From 0a1eb85daa05aabf0c10b2568a757a3773c166d4 Mon Sep 17 00:00:00 2001 From: Maksim Manylov Date: Mon, 16 Oct 2023 14:53:52 +0600 Subject: [PATCH] fix: update cms pool limits to 20m --- config/usdcLevconfig.ts | 2 +- config/usdcMTconfig.ts | 2 +- config/wbtcTconfig.ts | 2 +- config/wethMTconfig.ts | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/usdcLevconfig.ts b/config/usdcLevconfig.ts index 4b49c7d9..e0f3e7a6 100644 --- a/config/usdcLevconfig.ts +++ b/config/usdcLevconfig.ts @@ -371,7 +371,7 @@ export const config: PoolV3DeployConfig = { expirationDate: undefined, minDebt: (BigInt(1e4) * POOL_DECIMALS) / POOL_DIVIDER, maxDebt: (BigInt(1e6) * POOL_DECIMALS) / POOL_DIVIDER, - poolLimit: (BigInt(10_000_000) * POOL_DECIMALS) / POOL_DIVIDER, + poolLimit: (BigInt(20_000_000) * POOL_DECIMALS) / POOL_DIVIDER, collateralTokens: [ { token: "WETH", lt: 85_00 }, // Token address is token from priceFeed map above { token: "STETH", lt: 82_50 }, // Token address is token from priceFeed map above diff --git a/config/usdcMTconfig.ts b/config/usdcMTconfig.ts index 88a9e0c0..3e81c6d3 100644 --- a/config/usdcMTconfig.ts +++ b/config/usdcMTconfig.ts @@ -84,7 +84,7 @@ export const config: PoolV3DeployConfig = { expirationDate: undefined, minDebt: (BigInt(1e4) * POOL_DECIMALS) / POOL_DIVIDER, maxDebt: (BigInt(1e6) * POOL_DECIMALS) / POOL_DIVIDER, - poolLimit: BigInt(0), + poolLimit: (BigInt(20_000_000) * POOL_DECIMALS) / POOL_DIVIDER, collateralTokens: [ { token: "WETH", diff --git a/config/wbtcTconfig.ts b/config/wbtcTconfig.ts index d73db965..12cc73c6 100644 --- a/config/wbtcTconfig.ts +++ b/config/wbtcTconfig.ts @@ -36,7 +36,7 @@ export const config: PoolV3DeployConfig = { expirationDate: undefined, minDebt: (BigInt(1e4) * POOL_DECIMALS) / POOL_DIVIDER, maxDebt: (BigInt(1e6) * POOL_DECIMALS) / POOL_DIVIDER, - poolLimit: BigInt(0), + poolLimit: (BigInt(20_000_000) * POOL_DECIMALS) / POOL_DIVIDER, collateralTokens: [ { token: "WETH", diff --git a/config/wethMTconfig.ts b/config/wethMTconfig.ts index 08d933dc..c5ef2199 100644 --- a/config/wethMTconfig.ts +++ b/config/wethMTconfig.ts @@ -42,7 +42,7 @@ export const config: PoolV3DeployConfig = { expirationDate: undefined, minDebt: (BigInt(1e4) * POOL_DECIMALS) / POOL_DIVIDER, maxDebt: (BigInt(1e6) * POOL_DECIMALS) / POOL_DIVIDER, - poolLimit: BigInt(0), + poolLimit: (BigInt(20_000_000) * POOL_DECIMALS) / POOL_DIVIDER, collateralTokens: [ { token: "WBTC",