/** * 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 { UpdateSwitchParams } from '../types/UpdateSwitchParams'; /** * @category Instructions * @category UpdateSwitch * @category generated */ export type UpdateSwitchInstructionArgs = { params: UpdateSwitchParams; }; /** * @category Instructions * @category UpdateSwitch * @category generated */ export declare const updateSwitchStruct: beet.FixableBeetArgsStruct; /** * Accounts required by the _updateSwitch_ instruction * * @property [] artist * @property [**signer**] signer * @property [_writable_] switch * @property [] clockSysvar * @property [] hplEvents * @property [] rentSysvar * @category Instructions * @category UpdateSwitch * @category generated */ export type UpdateSwitchInstructionAccounts = { artist: web3.PublicKey; signer: web3.PublicKey; switch: web3.PublicKey; clockSysvar: web3.PublicKey; hplEvents: web3.PublicKey; rentSysvar: web3.PublicKey; systemProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const updateSwitchInstructionDiscriminator: number[]; /** * Creates a _UpdateSwitch_ 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 UpdateSwitch * @category generated */ export declare function createUpdateSwitchInstruction(accounts: UpdateSwitchInstructionAccounts, args: UpdateSwitchInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=updateSwitch.d.ts.map