Skip to content

Commit

Permalink
Update deposit params to desired config
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmichalis committed Feb 28, 2024
1 parent ea62999 commit d2e5923
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FeeCalculator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ contract FeeCalculator is IFeeCalculator, Ownable {
SD59x18 private zero = sd(0);
SD59x18 private one = sd(1e18);

SD59x18 private depositFeeScale = sd(0.18 * 1e18);
SD59x18 private depositFeeRatioScale = sd(0.99 * 1e18);
SD59x18 private depositFeeScale = sd(0.15 * 1e18);
SD59x18 private depositFeeRatioScale = sd(1.25 * 1e18);
SD59x18 private singleAssetDepositRelativeFee = sd(0.1 * 1e18);

SD59x18 private redemptionFeeScale = sd(0.3 * 1e18);
Expand Down

0 comments on commit d2e5923

Please sign in to comment.