Skip to content
This repository was archived by the owner on Aug 26, 2024. It is now read-only.

Commit a88d89c

Browse files
committed
Update rsr rewards
1 parent 06949d3 commit a88d89c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tasks/chain-specific/base.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ task("market:base:rsr-ion-rewards", "Sets caps on a market").setAction(
5656
// STEP 2: send reward tokens to strategies
5757
const rsrToken = await viem.getContractAt("EIP20Interface", RSR);
5858
const balance = await rsrToken.read.balanceOf([ionbsdETH]);
59-
if (balance < parseEther("170484.026388")) {
60-
await rsrToken.write.transfer([ionbsdETH, parseEther("170484.026388")]);
59+
if (balance < parseEther("127863.019791")) {
60+
await rsrToken.write.transfer([ionbsdETH, parseEther("127863.019791")]);
6161
}
6262
const balanceUSD = await rsrToken.read.balanceOf([ioneUSD]);
63-
if (balanceUSD < parseEther("185308.724335")) {
64-
await rsrToken.write.transfer([ioneUSD, parseEther("185308.724335")]);
63+
if (balanceUSD < parseEther("138981.543251")) {
64+
await rsrToken.write.transfer([ioneUSD, parseEther("138981.543251")]);
6565
}
6666

6767

0 commit comments

Comments
 (0)