Skip to content

Commit e04bc55

Browse files
feat: CRS
1 parent c87cd5e commit e04bc55

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

script/production/base/clusters/BaseCluster.s.sol

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -88,37 +88,37 @@ contract Cluster is ManageCluster {
8888

8989
// define supply caps here. 0 means no supply can occur, type(uint256).max means no cap defined hence max amount
9090
cluster.supplyCaps[WETH ] = 11_300;
91-
cluster.supplyCaps[wstETH] = 1_900;
92-
cluster.supplyCaps[cbETH ] = 900;
91+
cluster.supplyCaps[wstETH] = 950;
92+
cluster.supplyCaps[cbETH ] = 450;
9393
cluster.supplyCaps[weETH ] = 3_750;
94-
cluster.supplyCaps[ezETH ] = 1_900;
95-
cluster.supplyCaps[RETH ] = 1_900;
94+
cluster.supplyCaps[ezETH ] = 1_000;
95+
cluster.supplyCaps[RETH ] = 1_000;
9696
cluster.supplyCaps[wsuperOETHb] = 900;
9797
cluster.supplyCaps[USDC ] = 60_000_000;
9898
cluster.supplyCaps[USDT0 ] = 6_000_000;
9999
cluster.supplyCaps[EURC ] = 20_000_000;
100-
cluster.supplyCaps[cbBTC ] = 250;
101-
cluster.supplyCaps[LBTC ] = 100;
102-
cluster.supplyCaps[AERO ] = 1_000_000;
103-
cluster.supplyCaps[USDS ] = 20_000_000;
104-
cluster.supplyCaps[SUSDS ] = 10_000_000;
100+
cluster.supplyCaps[cbBTC ] = 125;
101+
cluster.supplyCaps[LBTC ] = 50;
102+
cluster.supplyCaps[AERO ] = 500_000;
103+
cluster.supplyCaps[USDS ] = 10_000_000;
104+
cluster.supplyCaps[SUSDS ] = 5_000_000;
105105

106106
// define borrow caps here. 0 means no borrow can occur, type(uint256).max means no cap defined hence max amount
107107
cluster.borrowCaps[WETH ] = 9_530;
108-
cluster.borrowCaps[wstETH] = 800;
109-
cluster.borrowCaps[cbETH ] = 800;
108+
cluster.borrowCaps[wstETH] = 400;
109+
cluster.borrowCaps[cbETH ] = 400;
110110
cluster.borrowCaps[weETH ] = 938;
111-
cluster.borrowCaps[ezETH ] = 500;
112-
cluster.borrowCaps[RETH ] = 800;
111+
cluster.borrowCaps[ezETH ] = 300;
112+
cluster.borrowCaps[RETH ] = 400;
113113
cluster.borrowCaps[wsuperOETHb] = 200;
114114
cluster.borrowCaps[USDC ] = 54_000_000;
115115
cluster.borrowCaps[USDT0 ] = 5_400_000;
116116
cluster.borrowCaps[EURC ] = 18_000_000;
117-
cluster.borrowCaps[cbBTC ] = 213;
118-
cluster.borrowCaps[LBTC ] = 30;
119-
cluster.borrowCaps[AERO ] = 800_000;
120-
cluster.borrowCaps[USDS ] = 18_000_000;
121-
cluster.borrowCaps[SUSDS ] = 9_000_000;
117+
cluster.borrowCaps[cbBTC ] = 110;
118+
cluster.borrowCaps[LBTC ] = 15;
119+
cluster.borrowCaps[AERO ] = 400_000;
120+
cluster.borrowCaps[USDS ] = 9_000_000;
121+
cluster.borrowCaps[SUSDS ] = 4_500_000;
122122

123123
// define IRM classes here and assign them to the assets
124124
{

script/production/unichain/clusters/UnichainCluster.s.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,24 +77,24 @@ contract Cluster is ManageCluster {
7777
cluster.supplyCaps[USDT0 ] = 100_000_000;
7878
cluster.supplyCaps[sUSDC ] = 80_000_000;
7979
cluster.supplyCaps[WETH ] = 15_000;
80-
cluster.supplyCaps[wstETH] = 2_250;
80+
cluster.supplyCaps[wstETH] = 1_130;
8181
cluster.supplyCaps[weETH ] = 22_500;
8282
cluster.supplyCaps[rsETH ] = 1_500;
8383
cluster.supplyCaps[ezETH ] = 1_500;
8484
cluster.supplyCaps[WBTC ] = 100;
85-
cluster.supplyCaps[UNI ] = 500_000;
85+
cluster.supplyCaps[UNI ] = 250_000;
8686

8787
// define borrow caps here. 0 means no borrow can occur, type(uint256).max means no cap defined hence max amount
8888
cluster.borrowCaps[USDC ] = 135_000_000;
8989
cluster.borrowCaps[USDT0 ] = 90_000_000;
9090
cluster.borrowCaps[sUSDC ] = 64_000_000;
9191
cluster.borrowCaps[WETH ] = 13_500;
92-
cluster.borrowCaps[wstETH] = 563;
92+
cluster.borrowCaps[wstETH] = 290;
9393
cluster.borrowCaps[weETH ] = 9_000;
9494
cluster.borrowCaps[rsETH ] = 375;
9595
cluster.borrowCaps[ezETH ] = 375;
9696
cluster.borrowCaps[WBTC ] = 90;
97-
cluster.borrowCaps[UNI ] = 400_000;
97+
cluster.borrowCaps[UNI ] = 200_000;
9898

9999
// define IRM classes here and assign them to the assets
100100
{

0 commit comments

Comments
 (0)