/** * 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 { UpdateArtistParams } from '../types/UpdateArtistParams'; /** * @category Instructions * @category UpdateArtist * @category generated */ export type UpdateArtistInstructionArgs = { params: UpdateArtistParams; }; /** * @category Instructions * @category UpdateArtist * @category generated */ export declare const updateArtistStruct: beet.FixableBeetArgsStruct; /** * Accounts required by the _updateArtist_ instruction * * @property [_writable_] artist * @property [**signer**] admin * @property [] clockSysvar * @property [] hplEvents * @category Instructions * @category UpdateArtist * @category generated */ export type UpdateArtistInstructionAccounts = { artist: web3.PublicKey; admin: web3.PublicKey; clockSysvar: web3.PublicKey; hplEvents: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const updateArtistInstructionDiscriminator: number[]; /** * Creates a _UpdateArtist_ 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 UpdateArtist * @category generated */ export declare function createUpdateArtistInstruction(accounts: UpdateArtistInstructionAccounts, args: UpdateArtistInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=updateArtist.d.ts.map