UNPKG

@metaplex-foundation/mpl-toolbox

Version:

Auto-generated essential Solana and Metaplex programs

25 lines (24 loc) 1.09 kB
/** * This code was AUTOGENERATED using the kinobi library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun kinobi to update it. * * @see https://github.com/metaplex-foundation/kinobi */ import { Context, Pda, PublicKey, Signer, TransactionBuilder } from '@metaplex-foundation/umi'; import { Serializer } from '@metaplex-foundation/umi/serializers'; export type MintTokensToInstructionAccounts = { mint: PublicKey | Pda; token: PublicKey | Pda; mintAuthority?: Signer; }; export type MintTokensToInstructionData = { discriminator: number; amount: bigint; }; export type MintTokensToInstructionDataArgs = { amount: number | bigint; }; export declare function getMintTokensToInstructionDataSerializer(): Serializer<MintTokensToInstructionDataArgs, MintTokensToInstructionData>; export type MintTokensToInstructionArgs = MintTokensToInstructionDataArgs; export declare function mintTokensTo(context: Pick<Context, 'identity' | 'programs'>, input: MintTokensToInstructionAccounts & MintTokensToInstructionArgs): TransactionBuilder;