UNPKG

@kamino-finance/kliquidity-sdk

Version:

Typescript SDK for interacting with the Kamino Liquidity (kliquidity) protocol

14 lines 590 B
import { Address, IInstruction, TransactionSigner } from "@solana/kit"; export interface UpdateGlobalConfigArgs { key: number; index: number; value: Array<number>; } export interface UpdateGlobalConfigAccounts { adminAuthority: TransactionSigner; globalConfig: Address; systemProgram: Address; } export declare const layout: import("buffer-layout").Layout<unknown>; export declare function updateGlobalConfig(args: UpdateGlobalConfigArgs, accounts: UpdateGlobalConfigAccounts, programAddress?: Address): IInstruction; //# sourceMappingURL=updateGlobalConfig.d.ts.map