diff --git a/src/models/lending/reserve.ts b/src/models/lending/reserve.ts index 2e2387f..24f1ef2 100644 --- a/src/models/lending/reserve.ts +++ b/src/models/lending/reserve.ts @@ -70,7 +70,6 @@ export interface LendingReserve { dexMarketOption: number; dexMarket: PublicKey; - dexMarketPrice: BN; // what is precision on the price? config: { optimalUtilizationRate: number; @@ -81,16 +80,12 @@ export interface LendingReserve { optimalBorrowRate: number; maxBorrowRate: number; }; - // collateralFactor: number; cumulativeBorrowRateWad: BN; borrowedLiquidityWad: BN; availableLiquidity: BN; collateralMintSupply: BN; - - // Layout.uint128("cumulative_borrow_rate"), - // Layout.uint128("total_borrows"), } export const LendingReserveParser = ( diff --git a/src/views/dashboard/index.tsx b/src/views/dashboard/index.tsx index 35209e0..6ac2652 100644 --- a/src/views/dashboard/index.tsx +++ b/src/views/dashboard/index.tsx @@ -18,8 +18,8 @@ export const DashboardView = () => { {userDeposits.length > 0 && (
{LABELS.DASHBOARD_TITLE_DEPOSITS}
+
{LABELS.TABLE_TITLE_ASSET}
{LABELS.TABLE_TITLE_DEPOSIT_BALANCE}
-
{LABELS.TABLE_TITLE_LOAN_BALANCE}
{LABELS.TABLE_TITLE_APY}
{LABELS.TABLE_TITLE_ACTION}