/** * 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 { InitializeSwitchArgs } from '../types/InitializeSwitchArgs'; /** * @category Instructions * @category InitializeSwitch * @category generated */ export type InitializeSwitchInstructionArgs = { params: InitializeSwitchArgs; }; /** * @category Instructions * @category InitializeSwitch * @category generated */ export declare const initializeSwitchStruct: beet.FixableBeetArgsStruct; /** * Accounts required by the _initializeSwitch_ instruction * * @property [] artist * @property [_writable_] switch * @property [_writable_] collectionMint * @property [_writable_] collectionAccount * @property [_writable_] collectionDelegateRecord * @property [_writable_] collectionMetadata * @property [**signer**] artistWallet * @property [_writable_, **signer**] payer * @property [] metadataProgram * @property [] currencyManagerProgram * @property [] rentSysvar * @property [] instructionsSysvar * @property [] clockSysvar * @property [] hplEvents * @category Instructions * @category InitializeSwitch * @category generated */ export type InitializeSwitchInstructionAccounts = { artist: web3.PublicKey; switch: web3.PublicKey; collectionMint: web3.PublicKey; collectionAccount: web3.PublicKey; collectionDelegateRecord: web3.PublicKey; collectionMetadata: web3.PublicKey; artistWallet: web3.PublicKey; payer: web3.PublicKey; metadataProgram: web3.PublicKey; currencyManagerProgram: web3.PublicKey; systemProgram?: web3.PublicKey; tokenProgram?: web3.PublicKey; rentSysvar: web3.PublicKey; instructionsSysvar: web3.PublicKey; clockSysvar: web3.PublicKey; hplEvents: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const initializeSwitchInstructionDiscriminator: number[]; /** * Creates a _InitializeSwitch_ 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 InitializeSwitch * @category generated */ export declare function createInitializeSwitchInstruction(accounts: InitializeSwitchInstructionAccounts, args: InitializeSwitchInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction; //# sourceMappingURL=initializeSwitch.d.ts.map