Interface DecodedCloseAccountInstruction

A decoded, valid CloseAccount instruction

interface DecodedCloseAccountInstruction {
    data: {
        instruction: CloseAccount;
    };
    keys: {
        account: AccountMeta;
        authority: AccountMeta;
        destination: AccountMeta;
        multiSigners: AccountMeta[];
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    instruction: CloseAccount;
}

Type declaration

keys: {
    account: AccountMeta;
    authority: AccountMeta;
    destination: AccountMeta;
    multiSigners: AccountMeta[];
}

Type declaration

  • account: AccountMeta
  • authority: AccountMeta
  • destination: AccountMeta
  • multiSigners: AccountMeta[]
programId: PublicKey

Generated using TypeDoc