UNPKG

@kamino-finance/klend-sdk

Version:

Typescript SDK for interacting with the Kamino Lending (klend) protocol

13 lines 537 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; import BN from "bn.js"; export interface UpdateLendingMarketArgs { mode: BN; value: Array<number>; } export interface UpdateLendingMarketAccounts { lendingMarketOwner: PublicKey; lendingMarket: PublicKey; } export declare const layout: any; export declare function updateLendingMarket(args: UpdateLendingMarketArgs, accounts: UpdateLendingMarketAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=updateLendingMarket.d.ts.map