UNPKG

@mihalex/farms-sdk-tests

Version:
13 lines (12 loc) 467 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; export interface UpdateFarmConfigArgs { mode: number; data: Array<number>; } export interface UpdateFarmConfigAccounts { farmAdmin: PublicKey; farmState: PublicKey; scopePrices: PublicKey; } export declare const layout: any; export declare function updateFarmConfig(args: UpdateFarmConfigArgs, accounts: UpdateFarmConfigAccounts, programId?: PublicKey): TransactionInstruction;