Interface DecodedBurnCheckedInstruction

A decoded, valid BurnChecked instruction

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

Properties

Properties

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

Type declaration

keys: {
    account: AccountMeta;
    mint: AccountMeta;
    multiSigners: AccountMeta[];
    owner: AccountMeta;
}

Type declaration

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

Generated using TypeDoc