/** * 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'; import { ArtistParams } from '../types/ArtistParams'; /** * @category Instructions * @category InitializeArtist * @category generated */ export type InitializeArtistInstructionArgs = { params: ArtistParams; }; /** * @category Instructions * @category InitializeArtist * @category generated */ export declare const initializeArtistStruct: beet.FixableBeetArgsStruct; /** * Accounts required by the _initializeArtist_ instruction * * @property [_writable_] artist * @property [_writable_] currency * @property [_writable_] hplDelegate * @property [_writable_] project * @property [_writable_, **signer**] mint * @property [_writable_] metadata * @property [_writable_] vault * @property [] artistWallet * @property [] lutAddress * @property [] tokenMetadataProgram * @property [] instructionsSysvar * @property [**signer**] admin * @property [_writable_, **signer**] payer * @property [] hiveControlProgram * @property [] currencyManagerProgram * @property [] hplEvents * @property [] rentSysvar * @property [] clockSysvar * @category Instructions * @category InitializeArtist * @category generated */ export type InitializeArtistInstructionAccounts = { artist: web3.PublicKey; currency: web3.PublicKey; hplDelegate: web3.PublicKey; project: web3.PublicKey; mint: web3.PublicKey; metadata: web3.PublicKey; vault: web3.PublicKey; artistWallet: web3.PublicKey; lutAddress: web3.PublicKey; tokenMetadataProgram: web3.PublicKey; instructionsSysvar: web3.PublicKey; admin: web3.PublicKey; payer: web3.PublicKey; tokenProgram?: web3.PublicKey; systemProgram?: web3.PublicKey; hiveControlProgram: web3.PublicKey; currencyManagerProgram: web3.PublicKey; hplEvents: web3.PublicKey; rentSysvar: web3.PublicKey; clockSysvar: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const initializeArtistInstructionDiscriminator: number[]; /** * Creates a _InitializeArtist_ instruction. * * @param accounts that will be accessed while the instruction is processed * @param args to provide as instruction data to the program * * @category Instructions * @category InitializeArtist * @category generated */ export declare function createInitializeArtistInstruction(accounts: InitializeArtistInstructionAccounts, args: InitializeArtistInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=initializeArtist.d.ts.map