@algofi/v1
Version:
The official JavaScript SDK for the V2 Algofi Lending Market
16 lines (15 loc) • 456 B
TypeScript
import { MarketType } from "./lendingConfig";
export default class MarketConfig {
appId: number;
underlyingAssetId: number;
bAssetId: number;
marketType: MarketType;
constructor(appId: number, underlyingAssetId: number, bAssetId: number, marketType: MarketType);
}
export declare const MarketConfigs: {
0: MarketConfig[];
1: MarketConfig[];
2: MarketConfig[];
4: MarketConfig[];
3: MarketConfig[];
};