Interface DecodedBurnCheckedInstructionUnchecked

A decoded, non-validated BurnChecked instruction

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

Properties

Properties

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

Type declaration

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

Type declaration

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

Generated using TypeDoc