Interface DecodedTransferCheckedInstructionUnchecked

A decoded, non-validated TransferChecked instruction

interface DecodedTransferCheckedInstructionUnchecked {
    data: {
        amount: bigint;
        decimals: number;
        instruction: number;
    };
    keys: {
        destination: undefined | AccountMeta;
        mint: undefined | AccountMeta;
        multiSigners: AccountMeta[];
        owner: undefined | AccountMeta;
        source: undefined | AccountMeta;
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    amount: bigint;
    decimals: number;
    instruction: number;
}

Type declaration

  • amount: bigint
  • decimals: number
  • instruction: number
keys: {
    destination: undefined | AccountMeta;
    mint: undefined | AccountMeta;
    multiSigners: AccountMeta[];
    owner: undefined | AccountMeta;
    source: undefined | AccountMeta;
}

Type declaration

  • destination: undefined | AccountMeta
  • mint: undefined | AccountMeta
  • multiSigners: AccountMeta[]
  • owner: undefined | AccountMeta
  • source: undefined | AccountMeta
programId: PublicKey

Generated using TypeDoc