Skip to content

Commit

Permalink
feat: add 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 0b248f7 commit cf6f3f9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,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),
};

const weETHAssetConfig = {
Expand All @@ -87,7 +87,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),
};

const mainnetActions = [
Expand Down

0 comments on commit cf6f3f9

Please sign in to comment.