Skip to content

Commit 3c252e3

Browse files
feat: reduce the caps in yield
1 parent cd593e3 commit 3c252e3

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

script/production/mainnet/clusters/YieldCluster.s.sol

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -139,23 +139,23 @@ contract Cluster is ManageCluster {
139139
// define supply caps here. 0 means no supply can occur, type(uint256).max means no cap defined hence max amount
140140
cluster.supplyCaps[USDC ] = 225_000_000;
141141
cluster.supplyCaps[USDT ] = 50_000_000;
142-
cluster.supplyCaps[PYUSD ] = 10_000_000;
142+
cluster.supplyCaps[PYUSD ] = 5_000_000;
143143
cluster.supplyCaps[rlUSD ] = 150_000_000;
144144
cluster.supplyCaps[wM ] = 5_000_000;
145-
cluster.supplyCaps[USDS ] = 10_000_000;
145+
cluster.supplyCaps[USDS ] = 5_000_000;
146146
cluster.supplyCaps[sUSDS ] = 8_000_000;
147-
cluster.supplyCaps[DAI ] = 10_000_000;
148-
cluster.supplyCaps[sDAI ] = 10_000_000;
149-
cluster.supplyCaps[USD0 ] = 10_000_000;
150-
cluster.supplyCaps[USD0PlusPlus ] = 12_000_000;
151-
cluster.supplyCaps[USDe ] = 40_000_000;
147+
cluster.supplyCaps[DAI ] = 5_000_000;
148+
cluster.supplyCaps[sDAI ] = 5_000_000;
149+
cluster.supplyCaps[USD0 ] = 5_000_000;
150+
cluster.supplyCaps[USD0PlusPlus ] = 6_000_000;
151+
cluster.supplyCaps[USDe ] = 20_000_000;
152152
cluster.supplyCaps[eUSDe ] = 60_000_000;
153-
cluster.supplyCaps[sUSDe ] = 30_000_000;
154-
cluster.supplyCaps[USDtb ] = 20_000_000;
153+
cluster.supplyCaps[sUSDe ] = 15_000_000;
154+
cluster.supplyCaps[USDtb ] = 10_000_000;
155155
cluster.supplyCaps[rUSD ] = 30_000_000;
156156
cluster.supplyCaps[srUSD ] = 30_000_000;
157-
cluster.supplyCaps[syrupUSDC ] = 20_000_000;
158-
cluster.supplyCaps[mBASIS ] = 6_000_000;
157+
cluster.supplyCaps[syrupUSDC ] = 10_000_000;
158+
cluster.supplyCaps[mBASIS ] = 3_000_000;
159159
cluster.supplyCaps[mEDGE ] = 0;
160160
cluster.supplyCaps[mMEV ] = 0;
161161
cluster.supplyCaps[PT_USD0PlusPlus_26JUN2025] = 6_000_000;
@@ -172,23 +172,23 @@ contract Cluster is ManageCluster {
172172
// define borrow caps here. 0 means no borrow can occur, type(uint256).max means no cap defined hence max amount
173173
cluster.borrowCaps[USDC ] = 200_000_000;
174174
cluster.borrowCaps[USDT ] = 45_000_000;
175-
cluster.borrowCaps[PYUSD ] = 9_000_000;
175+
cluster.borrowCaps[PYUSD ] = 4_500_000;
176176
cluster.borrowCaps[rlUSD ] = 100_000_000;
177177
cluster.borrowCaps[wM ] = 4_500_000;
178-
cluster.borrowCaps[USDS ] = 9_000_000;
178+
cluster.borrowCaps[USDS ] = 4_500_000;
179179
cluster.borrowCaps[sUSDS ] = 2_400_000;
180-
cluster.borrowCaps[DAI ] = 9_000_000;
181-
cluster.borrowCaps[sDAI ] = 3_000_000;
182-
cluster.borrowCaps[USD0 ] = 9_000_000;
180+
cluster.borrowCaps[DAI ] = 4_500_000;
181+
cluster.borrowCaps[sDAI ] = 1_500_000;
182+
cluster.borrowCaps[USD0 ] = 4_500_000;
183183
cluster.borrowCaps[USD0PlusPlus ] = 3_600_000;
184-
cluster.borrowCaps[USDe ] = 36_000_000;
184+
cluster.borrowCaps[USDe ] = 18_000_000;
185185
cluster.borrowCaps[eUSDe ] = 51_000_000;
186-
cluster.borrowCaps[sUSDe ] = 9_000_000;
187-
cluster.borrowCaps[USDtb ] = 18_000_000;
186+
cluster.borrowCaps[sUSDe ] = 4_500_000;
187+
cluster.borrowCaps[USDtb ] = 9_000_000;
188188
cluster.borrowCaps[rUSD ] = 27_000_000;
189189
cluster.borrowCaps[srUSD ] = type(uint256).max;
190-
cluster.borrowCaps[syrupUSDC ] = 18_000_000;
191-
cluster.borrowCaps[mBASIS ] = 1_800_000;
190+
cluster.borrowCaps[syrupUSDC ] = 9_000_000;
191+
cluster.borrowCaps[mBASIS ] = 900_000;
192192
cluster.borrowCaps[mEDGE ] = 0;
193193
cluster.borrowCaps[mMEV ] = 0;
194194
cluster.borrowCaps[PT_USD0PlusPlus_26JUN2025] = type(uint256).max;

0 commit comments

Comments
 (0)