UNPKG

@kamino-finance/klend-sdk

Version:

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

14 lines 585 B
import { TransactionInstruction, PublicKey } from "@solana/web3.js"; export interface InitLendingMarketArgs { quoteCurrency: Array<number>; } export interface InitLendingMarketAccounts { lendingMarketOwner: PublicKey; lendingMarket: PublicKey; lendingMarketAuthority: PublicKey; systemProgram: PublicKey; rent: PublicKey; } export declare const layout: any; export declare function initLendingMarket(args: InitLendingMarketArgs, accounts: InitLendingMarketAccounts, programId?: PublicKey): TransactionInstruction; //# sourceMappingURL=initLendingMarket.d.ts.map