UNPKG

@kamino-finance/klend-sdk

Version:

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

6 lines 626 B
import { AccountInfo, Connection, PublicKey } from '@solana/web3.js'; import { LendingMarket, Obligation, Reserve } from '../idl_codegen/accounts'; export declare function getAllObligationAccounts(connection: Connection): AsyncGenerator<[PublicKey, Obligation], void, unknown>; export declare function getAllReserveAccounts(connection: Connection): AsyncGenerator<[PublicKey, Reserve, AccountInfo<Buffer>], void, unknown>; export declare function getAllLendingMarketAccounts(connection: Connection, programId?: PublicKey): AsyncGenerator<[PublicKey, LendingMarket], void, unknown>; //# sourceMappingURL=accountListing.d.ts.map