Interface DecodedMintToInstructionUnchecked

A decoded, non-validated MintTo instruction

interface DecodedMintToInstructionUnchecked {
    data: {
        amount: bigint;
        instruction: number;
    };
    keys: {
        authority: undefined | AccountMeta;
        destination: undefined | AccountMeta;
        mint: undefined | AccountMeta;
        multiSigners: AccountMeta[];
    };
    programId: PublicKey;
}

Properties

Properties

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

Type declaration

  • amount: bigint
  • instruction: number
keys: {
    authority: undefined | AccountMeta;
    destination: undefined | AccountMeta;
    mint: undefined | AccountMeta;
    multiSigners: AccountMeta[];
}

Type declaration

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

Generated using TypeDoc