Interface DecodedMintToCheckedInstruction

A decoded, valid MintToChecked instruction

interface DecodedMintToCheckedInstruction {
    data: {
        amount: bigint;
        decimals: number;
        instruction: MintToChecked;
    };
    keys: {
        authority: AccountMeta;
        destination: AccountMeta;
        mint: AccountMeta;
        multiSigners: AccountMeta[];
    };
    programId: PublicKey;
}

Properties

Properties

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

Type declaration

keys: {
    authority: AccountMeta;
    destination: AccountMeta;
    mint: AccountMeta;
    multiSigners: AccountMeta[];
}

Type declaration

  • authority: AccountMeta
  • destination: AccountMeta
  • mint: AccountMeta
  • multiSigners: AccountMeta[]
programId: PublicKey

Generated using TypeDoc