Type Alias MoneyMarketPayload
MoneyMarketPayload: Partial<
{
borrowAPR: number;
borrowCap: string;
borrowedUSD: number;
canBorrow: boolean;
health: { solvencyRatio: number; tokenDeficitUSD?: number };
isPaused: boolean;
supplyAPR: number;
supplyCap: string;
utilization: number;
},
>