From df18c50f65ec2d823934564c226e22757571b4f9 Mon Sep 17 00:00:00 2001 From: Maksim Manylov Date: Wed, 11 Oct 2023 03:01:34 +0600 Subject: [PATCH 1/2] fix: minRate: 0 to minRate: 1 --- config/usdcMTconfig.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/usdcMTconfig.ts b/config/usdcMTconfig.ts index df681374..88a9e0c0 100644 --- a/config/usdcMTconfig.ts +++ b/config/usdcMTconfig.ts @@ -47,13 +47,13 @@ export const config: PoolV3DeployConfig = { limit: (BigInt(5e5) * POOL_DECIMALS) / POOL_DIVIDER, }, RPL: { - minRate: 0, + minRate: 1, maxRate: 3000, quotaIncreaseFee: 200, limit: (BigInt(3e5) * POOL_DECIMALS) / POOL_DIVIDER, }, CRV: { - minRate: 0, + minRate: 1, maxRate: 3000, quotaIncreaseFee: 200, limit: (BigInt(25e4) * POOL_DECIMALS) / POOL_DIVIDER, From 297bc9a8fa216ba5c892faee23ab7b833993a29f Mon Sep 17 00:00:00 2001 From: Maksim Manylov Date: Wed, 11 Oct 2023 03:02:55 +0600 Subject: [PATCH 2/2] fix: minRate --- config/wbtcTconfig.ts | 2 +- config/wethMTconfig.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/wbtcTconfig.ts b/config/wbtcTconfig.ts index b085337c..687858d6 100644 --- a/config/wbtcTconfig.ts +++ b/config/wbtcTconfig.ts @@ -23,7 +23,7 @@ export const config: PoolV3DeployConfig = { }, ratesAndLimits: { USDC: { - minRate: 0, + minRate: 1, maxRate: 3000, quotaIncreaseFee: 100, limit: (BigInt(30e6) * POOL_DECIMALS) / POOL_DIVIDER, diff --git a/config/wethMTconfig.ts b/config/wethMTconfig.ts index 6e6c790b..48303bef 100644 --- a/config/wethMTconfig.ts +++ b/config/wethMTconfig.ts @@ -23,13 +23,13 @@ export const config: PoolV3DeployConfig = { }, ratesAndLimits: { STETH: { - minRate: 0, + minRate: 1, maxRate: 200, quotaIncreaseFee: 0, limit: (BigInt(30e6) * POOL_DECIMALS) / POOL_DIVIDER, }, USDC: { - minRate: 0, + minRate: 1, maxRate: 3000, quotaIncreaseFee: 100, limit: (BigInt(30e6) * POOL_DECIMALS) / POOL_DIVIDER,