Skip to content

Commit

Permalink
update supply caps
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriy-woof-software committed May 31, 2024
1 parent 8e9f48d commit 10a5502
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default migration('1716798961_add_rseth_and_weeth', {
borrowCollateralFactor: exp(0.80, 18),
liquidateCollateralFactor: exp(0.85, 18),
liquidationFactor: exp(0.9, 18),
supplyCap: exp(0, 18), // 5_000
supplyCap: exp(5_000, 18), // 5_000
};

const weETHAssetConfig = {
Expand All @@ -183,7 +183,7 @@ export default migration('1716798961_add_rseth_and_weeth', {
borrowCollateralFactor: exp(0.82, 18),
liquidateCollateralFactor: exp(0.87, 18),
liquidationFactor: exp(0.92, 18),
supplyCap: exp(0, 18), // 22_500
supplyCap: exp(22_500, 18), // 22_500
};

// 1. Compare proposed asset config with Comet asset info
Expand Down

0 comments on commit 10a5502

Please sign in to comment.