/** * 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'; import { MetadataArgs, MetadataArgsArgs } from '../types'; export declare type MintV1InstructionAccounts = { treeConfig?: PublicKey | Pda; leafOwner: PublicKey | Pda; leafDelegate?: PublicKey | Pda; merkleTree: PublicKey | Pda; payer?: Signer; treeCreatorOrDelegate?: Signer; logWrapper?: PublicKey | Pda; compressionProgram?: PublicKey | Pda; systemProgram?: PublicKey | Pda; }; export declare type MintV1InstructionData = { discriminator: Array; metadata: MetadataArgs; }; export declare type MintV1InstructionDataArgs = { metadata: MetadataArgsArgs; }; export declare function getMintV1InstructionDataSerializer(): Serializer; export declare type MintV1InstructionArgs = MintV1InstructionDataArgs; export declare function mintV1(context: Pick, input: MintV1InstructionAccounts & MintV1InstructionArgs): TransactionBuilder;