/** * 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 { IncreasePlatformTokenArgs } from '../types/IncreasePlatformTokenArgs'; /** * @category Instructions * @category IncreasePlatformToken * @category generated */ export type IncreasePlatformTokenInstructionArgs = { args: IncreasePlatformTokenArgs; }; /** * @category Instructions * @category IncreasePlatformToken * @category generated */ export declare const increasePlatformTokenStruct: beet.BeetArgsStruct; /** * Accounts required by the _increasePlatformToken_ instruction * * @property [_writable_, **signer**] withdrawalWallet * @property [_writable_] circusCasino * @property [] circusTokenPoolVaultAuthority * @property [_writable_] platformTokenVault * @property [_writable_] depositTokenAta * @property [] clock * @category Instructions * @category IncreasePlatformToken * @category generated */ export type IncreasePlatformTokenInstructionAccounts = { withdrawalWallet: web3.PublicKey; circusCasino: web3.PublicKey; circusTokenPoolVaultAuthority: web3.PublicKey; platformTokenVault: web3.PublicKey; depositTokenAta: web3.PublicKey; clock: web3.PublicKey; systemProgram?: web3.PublicKey; tokenProgram?: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const increasePlatformTokenInstructionDiscriminator: number[]; /** * Creates a _IncreasePlatformToken_ 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 IncreasePlatformToken * @category generated */ export declare function createIncreasePlatformTokenInstruction(accounts: IncreasePlatformTokenInstructionAccounts, args: IncreasePlatformTokenInstructionArgs, programId?: web3.PublicKey): web3.TransactionInstruction;