/** * 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 SignupUser * @category generated */ export declare const signupUserStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; /** * Accounts required by the _signupUser_ instruction * * @property [_writable_, **signer**] userWallet * @property [_writable_, **signer**] apiWallet * @property [_writable_] circusCasino * @property [_writable_] userProfile * @property [] clock * @category Instructions * @category SignupUser * @category generated */ export type SignupUserInstructionAccounts = { userWallet: web3.PublicKey; apiWallet: web3.PublicKey; circusCasino: web3.PublicKey; userProfile: web3.PublicKey; clock: web3.PublicKey; systemProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const signupUserInstructionDiscriminator: number[]; /** * Creates a _SignupUser_ instruction. * * @param accounts that will be accessed while the instruction is processed * @category Instructions * @category SignupUser * @category generated */ export declare function createSignupUserInstruction(accounts: SignupUserInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;