fbonds-core
Version:
Banx protocol sdk
12 lines (11 loc) • 444 B
TypeScript
import { Connection, PublicKey } from "@solana/web3.js";
import { SolendReserve } from "./solendReserv";
export declare class SolendMarket {
private connection;
reserves: Array<SolendReserve>;
rewardsData: any | null;
config: any;
programId: PublicKey;
private constructor();
static initialize(connection: Connection, environment?: "production" | "devnet" | "beta", marketAddress?: string): Promise<SolendMarket>;
}