UNPKG

@hubbleprotocol/farms-sdk

Version:
12 lines (11 loc) 455 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; export interface UpdateGlobalConfigArgs { mode: number; value: Array<number>; } export interface UpdateGlobalConfigAccounts { globalAdmin: PublicKey; globalConfig: PublicKey; } export declare const layout: any; export declare function updateGlobalConfig(args: UpdateGlobalConfigArgs, accounts: UpdateGlobalConfigAccounts, programId?: PublicKey): TransactionInstruction;