Skip to content

Commit

Permalink
change MAX_CAP_LEVERAGE to 99x
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasCImach committed Aug 8, 2024
1 parent 9290676 commit 57788c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/OverlayV1Factory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract OverlayV1Factory is IOverlayV1Factory {
200e14, // MAX_DELTA = 2% (200 bps)
100e18, // MAX_CAP_PAYOFF = 100x
88_888_888e18, // MAX_CAP_NOTIONAL = 88,888,888 OV (initial supply)
100e18, // MAX_CAP_LEVERAGE = 100x
99e18, // MAX_CAP_LEVERAGE = 99x
31536000, // MAX_CIRCUIT_BREAKER_WINDOW = 365 days
88_888_888e18, // MAX_CIRCUIT_BREAKER_MINT_TARGET = 88,888,888 OV (initial supply)
0.2e18, // MAX_MAINTENANCE_MARGIN_FRACTION = 20%
Expand Down
2 changes: 1 addition & 1 deletion tests/factories/market/test_conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def test_factory_fixture(factory, fee_recipient, feed_factory, feed_three, ov,
100000000000000000000, # MAX_CAP_PAYOFF = 100x
# MAX_CAP_NOTIONAL = 88,888,888 OV (initial supply)
88888888000000000000000000,
100000000000000000000, # MAX_CAP_LEVERAGE = 100x
99000000000000000000, # MAX_CAP_LEVERAGE = 99x
31536000, # MAX_CIRCUIT_BREAKER_WINDOW = 365 days
# MAX_CIRCUIT_BREAKER_MINT_TARGET = 88,888,888 OV
88888888000000000000000000,
Expand Down

0 comments on commit 57788c5

Please sign in to comment.