Skip to content

Commit

Permalink
Merge pull request #74 from Gearbox-protocol/pool-limits-cms
Browse files Browse the repository at this point in the history
fix: update cms pool limits to 20m
  • Loading branch information
manylov authored Oct 16, 2023
2 parents f0ba44c + 0a1eb85 commit 915dd6c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion config/usdcLevconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config/usdcMTconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion config/wbtcTconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion config/wethMTconfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 915dd6c

Please sign in to comment.