/** * 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 MintNft * @category generated */ export declare const mintNftStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; /** * Accounts required by the _mintNft_ instruction * * @property [_writable_] project * @property [_writable_] artist * @property [_writable_] artistWallet * @property [_writable_] switch * @property [_writable_, **signer**] nftMint * @property [_writable_] nftTokenAccount * @property [_writable_] nftMetadata * @property [_writable_] nftTokenRecord (optional) * @property [_writable_] collectionMetadata * @property [_writable_] collectionEdition * @property [_writable_] collectionMint * @property [_writable_] collectionDelegateRecord * @property [_writable_] nftEdition (optional) * @property [] currency * @property [_writable_] currencyMint * @property [_writable_] tokenAccount * @property [_writable_] holderAccount * @property [_writable_] vault * @property [**signer**] owner * @property [_writable_, **signer**] payer * @property [] instructionsSysvar * @property [] metadataProgram * @property [] currencyManagerProgram * @property [] hiveControl * @property [] hplEvents * @property [] clockSysvar * @category Instructions * @category MintNft * @category generated */ export type MintNftInstructionAccounts = { project: web3.PublicKey; artist: web3.PublicKey; artistWallet: web3.PublicKey; switch: web3.PublicKey; nftMint: web3.PublicKey; nftTokenAccount: web3.PublicKey; nftMetadata: web3.PublicKey; nftTokenRecord?: web3.PublicKey; collectionMetadata: web3.PublicKey; collectionEdition: web3.PublicKey; collectionMint: web3.PublicKey; collectionDelegateRecord: web3.PublicKey; nftEdition?: web3.PublicKey; currency: web3.PublicKey; currencyMint: web3.PublicKey; tokenAccount: web3.PublicKey; holderAccount: web3.PublicKey; vault: web3.PublicKey; owner: web3.PublicKey; payer: web3.PublicKey; instructionsSysvar: web3.PublicKey; metadataProgram: web3.PublicKey; currencyManagerProgram: web3.PublicKey; hiveControl: web3.PublicKey; hplEvents: web3.PublicKey; clockSysvar: web3.PublicKey; systemProgram?: web3.PublicKey; tokenProgram?: web3.PublicKey; ataProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const mintNftInstructionDiscriminator: number[]; /** * Creates a _MintNft_ instruction. * * Optional accounts that are not provided will be omitted from the accounts * array passed with the instruction. * An optional account that is set cannot follow an optional account that is unset. * Otherwise an Error is raised. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category MintNft * @category generated */ export declare function createMintNftInstruction(accounts: MintNftInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=mintNft.d.ts.map