Interface DecodedTransferCheckedWithFeeInstruction

A decoded, valid TransferCheckedWithFee instruction

interface DecodedTransferCheckedWithFeeInstruction {
    data: {
        amount: bigint;
        decimals: number;
        fee: bigint;
        instruction: TransferFeeExtension;
        transferFeeInstruction: TransferCheckedWithFee;
    };
    keys: {
        authority: AccountMeta;
        destination: AccountMeta;
        mint: AccountMeta;
        signers: null | AccountMeta[];
        source: AccountMeta;
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    amount: bigint;
    decimals: number;
    fee: bigint;
    instruction: TransferFeeExtension;
    transferFeeInstruction: TransferCheckedWithFee;
}

Type declaration

keys: {
    authority: AccountMeta;
    destination: AccountMeta;
    mint: AccountMeta;
    signers: null | AccountMeta[];
    source: AccountMeta;
}

Type declaration

  • authority: AccountMeta
  • destination: AccountMeta
  • mint: AccountMeta
  • signers: null | AccountMeta[]
  • source: AccountMeta
programId: PublicKey

Generated using TypeDoc