UNPKG

kamino-sdk-beta

Version:

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

14 lines 554 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; export interface UpdateGlobalConfigArgs { key: number; index: number; value: Array<number>; } export interface UpdateGlobalConfigAccounts { adminAuthority: PublicKey; globalConfig: PublicKey; systemProgram: PublicKey; } export declare const layout: any; export declare function updateGlobalConfig(args: UpdateGlobalConfigArgs, accounts: UpdateGlobalConfigAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=updateGlobalConfig.d.ts.map