Skip to content

Commit

Permalink
fix: correct supply cap
Browse files Browse the repository at this point in the history
  • Loading branch information
MishaShWoof committed Jul 5, 2024
1 parent 2fde834 commit 2351631
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default migration('1718791267_add_wbtc_as_collateral', {
borrowCollateralFactor: exp(0.80, 18),
liquidateCollateralFactor: exp(0.85, 18),
liquidationFactor: exp(0.95, 18),
supplyCap: exp(1_000, 8),
supplyCap: exp(300, 8),
};

const addAssetCalldata = ethers.utils.defaultAbiCoder.encode(
Expand Down Expand Up @@ -170,7 +170,7 @@ export default migration('1718791267_add_wbtc_as_collateral', {
borrowCollateralFactor: exp(0.80, 18),
liquidateCollateralFactor: exp(0.85, 18),
liquidationFactor: exp(0.95, 18),
supplyCap: exp(1_000, 8),
supplyCap: exp(300, 8),
};

// 1. & 2. Compare WBTC asset config with Comet and Configurator asset info
Expand Down

0 comments on commit 2351631

Please sign in to comment.