UNPKG

@kamino-finance/klend-sdk

Version:

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

15 lines 587 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; import BN from "bn.js"; export interface UpdateReserveConfigArgs { mode: BN; value: Uint8Array; skipValidation: boolean; } export interface UpdateReserveConfigAccounts { lendingMarketOwner: PublicKey; lendingMarket: PublicKey; reserve: PublicKey; } export declare const layout: any; export declare function updateReserveConfig(args: UpdateReserveConfigArgs, accounts: UpdateReserveConfigAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=updateReserveConfig.d.ts.map