Interface DecodedUiAmountToAmountInstructionUnchecked

A decoded, non-validated UiAmountToAmount instruction

interface DecodedUiAmountToAmountInstructionUnchecked {
    data: {
        amount: Uint8Array;
        instruction: number;
    };
    keys: {
        mint: undefined | AccountMeta;
    };
    programId: PublicKey;
}

Properties

Properties

data: {
    amount: Uint8Array;
    instruction: number;
}

Type declaration

  • amount: Uint8Array
  • instruction: number
keys: {
    mint: undefined | AccountMeta;
}

Type declaration

  • mint: undefined | AccountMeta
programId: PublicKey

Generated using TypeDoc