/** * 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 PopulateNftCreators * @category generated */ export declare const populateNftCreatorsStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; /** * Accounts required by the _populateNftCreators_ instruction * * @property [] artist * @property [] switch * @property [_writable_] nftMint * @property [_writable_] nftMetadata * @property [**signer**] signer * @property [] metadataProgram * @property [] instructionsSysvar * @category Instructions * @category PopulateNftCreators * @category generated */ export type PopulateNftCreatorsInstructionAccounts = { artist: web3.PublicKey; switch: web3.PublicKey; nftMint: web3.PublicKey; nftMetadata: web3.PublicKey; signer: web3.PublicKey; metadataProgram: web3.PublicKey; instructionsSysvar: web3.PublicKey; systemProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const populateNftCreatorsInstructionDiscriminator: number[]; /** * Creates a _PopulateNftCreators_ instruction. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category PopulateNftCreators * @category generated */ export declare function createPopulateNftCreatorsInstruction(accounts: PopulateNftCreatorsInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=populateNftCreators.d.ts.map