/** * This code was GENERATED using the solita package. * Please DO NOT EDIT THIS FILE, instead rerun solita to update it or write a wrapper to add functionality. * * See: https://github.com/metaplex-foundation/solita */ import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; /** * @category Instructions * @category MintCnft * @category generated */ export declare const mintCnftStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; /** * Accounts required by the _mintCnft_ instruction * * @property [_writable_] project * @property [_writable_] artist * @property [_writable_] switch * @property [_writable_] merkleTree * @property [_writable_] treeAuthority * @property [_writable_] collectionMint * @property [_writable_] collectionMetadata * @property [_writable_] collectionEdition * @property [_writable_] collectionAuthorityRecordPda * @property [] currency * @property [_writable_] currencyMint * @property [_writable_] tokenAccount * @property [_writable_] holderAccount * @property [_writable_] bubblegumSigner * @property [] instructionsSysvar * @property [_writable_] vault * @property [**signer**] owner * @property [_writable_, **signer**] payer * @property [] currencyManagerProgram * @property [] hiveControl * @property [] hplEvents * @property [] clockSysvar * @property [] tokenMetadataProgram * @property [] compressionProgram * @property [] logWrapper * @property [] bubblegumProgram * @category Instructions * @category MintCnft * @category generated */ export type MintCnftInstructionAccounts = { project: web3.PublicKey; artist: web3.PublicKey; switch: web3.PublicKey; merkleTree: web3.PublicKey; treeAuthority: web3.PublicKey; collectionMint: web3.PublicKey; collectionMetadata: web3.PublicKey; collectionEdition: web3.PublicKey; collectionAuthorityRecordPda: web3.PublicKey; currency: web3.PublicKey; currencyMint: web3.PublicKey; tokenAccount: web3.PublicKey; holderAccount: web3.PublicKey; bubblegumSigner: web3.PublicKey; instructionsSysvar: web3.PublicKey; vault: web3.PublicKey; owner: web3.PublicKey; payer: web3.PublicKey; currencyManagerProgram: web3.PublicKey; hiveControl: web3.PublicKey; hplEvents: web3.PublicKey; clockSysvar: web3.PublicKey; tokenMetadataProgram: web3.PublicKey; compressionProgram: web3.PublicKey; logWrapper: web3.PublicKey; systemProgram?: web3.PublicKey; bubblegumProgram: web3.PublicKey; tokenProgram?: web3.PublicKey; ataProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const mintCnftInstructionDiscriminator: number[]; /** * Creates a _MintCnft_ instruction. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category MintCnft * @category generated */ export declare function createMintCnftInstruction(accounts: MintCnftInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=mintCnft.d.ts.map