UNPKG

@algofi/js-sdk

Version:

The official Algofi JavaScript SDK

21 lines (20 loc) 627 B
import { MarketType } from "./lendingConfig"; export default class MarketConfig { appId: number; underlyingAssetId: number; bAssetId: number; marketType: MarketType; /** * Constructor for the market config class * * @param appId - market app id * @param underlyingAssetId - underlying asset id * @param bAssetId - b asset id * @param marketType - market type */ constructor(appId: number, underlyingAssetId: number, bAssetId: number, marketType: MarketType); } export declare const MarketConfigs: { 0: MarketConfig[]; 1: MarketConfig[]; };