/** * 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 { ChangeVoterWithdrawalWalletsArgs } from '../types/ChangeVoterWithdrawalWalletsArgs'; /** * @category Instructions * @category ChangeVoterWithdrawalWallets * @category generated */ export type ChangeVoterWithdrawalWalletsInstructionArgs = { args: ChangeVoterWithdrawalWalletsArgs; }; /** * @category Instructions * @category ChangeVoterWithdrawalWallets * @category generated */ export declare const changeVoterWithdrawalWalletsStruct: beet.BeetArgsStruct; /** * Accounts required by the _changeVoterWithdrawalWallets_ instruction * * @property [_writable_, **signer**] adminWallet * @property [] circusCasino * @property [_writable_] voteWithdrawal * @category Instructions * @category ChangeVoterWithdrawalWallets * @category generated */ export type ChangeVoterWithdrawalWalletsInstructionAccounts = { adminWallet: web3.PublicKey; circusCasino: web3.PublicKey; voteWithdrawal: web3.PublicKey; systemProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const changeVoterWithdrawalWalletsInstructionDiscriminator: number[]; /** * Creates a _ChangeVoterWithdrawalWallets_ 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 ChangeVoterWithdrawalWallets * @category generated */ export declare function createChangeVoterWithdrawalWalletsInstruction(accounts: ChangeVoterWithdrawalWalletsInstructionAccounts, args: ChangeVoterWithdrawalWalletsInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;