/** * 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 DeleteSwitch * @category generated */ export declare const deleteSwitchStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; /** * Accounts required by the _deleteSwitch_ instruction * * @property [] artist * @property [_writable_] switch * @property [_writable_, **signer**] artistWallet * @property [] clockSysvar * @property [] hplEvents * @category Instructions * @category DeleteSwitch * @category generated */ export type DeleteSwitchInstructionAccounts = { artist: web3.PublicKey; switch: web3.PublicKey; artistWallet: web3.PublicKey; clockSysvar: web3.PublicKey; hplEvents: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const deleteSwitchInstructionDiscriminator: number[]; /** * Creates a _DeleteSwitch_ instruction. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category DeleteSwitch * @category generated */ export declare function createDeleteSwitchInstruction(accounts: DeleteSwitchInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=deleteSwitch.d.ts.map