Skip to content

Commit

Permalink
Update 84532-andromeda
Browse files Browse the repository at this point in the history
  • Loading branch information
synthetixio-team committed Mar 8, 2024
1 parent 8ab247d commit 0c6de78
Show file tree
Hide file tree
Showing 4 changed files with 166 additions and 47 deletions.
25 changes: 25 additions & 0 deletions 84532-andromeda/PerpsMarketProxy.json
Original file line number Diff line number Diff line change
Expand Up @@ -3021,6 +3021,18 @@
"type": "uint256",
"name": "maxMarketSize",
"indexed": false
}
]
},
{
"type": "event",
"anonymous": false,
"name": "MaxMarketValueSet",
"inputs": [
{
"type": "uint128",
"name": "marketId",
"indexed": true
},
{
"type": "uint256",
Expand Down Expand Up @@ -3580,6 +3592,19 @@
{
"type": "uint256",
"name": "maxMarketSize"
}
],
"outputs": []
},
{
"type": "function",
"name": "setMaxMarketValue",
"constant": false,
"payable": false,
"inputs": [
{
"type": "uint128",
"name": "marketId"
},
{
"type": "uint256",
Expand Down
6 changes: 4 additions & 2 deletions 84532-andromeda/PerpsMarketProxy.readable.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@
"event LockedOiRatioSet(uint128 indexed marketId, uint256 lockedOiRatioD18)",
"event MarketPriceDataUpdated(uint128 indexed marketId, bytes32 feedId, uint256 strictStalenessTolerance)",
"event MaxLiquidationParametersSet(uint128 indexed marketId, uint256 maxLiquidationLimitAccumulationMultiplier, uint256 maxSecondsInLiquidationWindow, uint256 maxLiquidationPd, address endorsedLiquidator)",
"event MaxMarketSizeSet(uint128 indexed marketId, uint256 maxMarketSize, uint256 maxMarketValue)",
"event MaxMarketSizeSet(uint128 indexed marketId, uint256 maxMarketSize)",
"event MaxMarketValueSet(uint128 indexed marketId, uint256 maxMarketValue)",
"event OrderFeesSet(uint128 indexed marketId, uint256 makerFeeRatio, uint256 takerFeeRatio)",
"event SettlementStrategyAdded(uint128 indexed marketId, tuple(uint8 strategyType, uint256 settlementDelay, uint256 settlementWindowDuration, address priceVerificationContract, bytes32 feedId, uint256 settlementReward, bool disabled, uint256 commitmentPriceDelay) strategy, uint256 indexed strategyId)",
"event SettlementStrategySet(uint128 indexed marketId, uint256 indexed strategyId, tuple(uint8 strategyType, uint256 settlementDelay, uint256 settlementWindowDuration, address priceVerificationContract, bytes32 feedId, uint256 settlementReward, bool disabled, uint256 commitmentPriceDelay) strategy)",
Expand All @@ -181,7 +182,8 @@
"function setLiquidationParameters(uint128 marketId, uint256 initialMarginRatioD18, uint256 minimumInitialMarginRatioD18, uint256 maintenanceMarginScalarD18, uint256 flagRewardRatioD18, uint256 minimumPositionMargin)",
"function setLockedOiRatio(uint128 marketId, uint256 lockedOiRatioD18)",
"function setMaxLiquidationParameters(uint128 marketId, uint256 maxLiquidationLimitAccumulationMultiplier, uint256 maxSecondsInLiquidationWindow, uint256 maxLiquidationPd, address endorsedLiquidator)",
"function setMaxMarketSize(uint128 marketId, uint256 maxMarketSize, uint256 maxMarketValue)",
"function setMaxMarketSize(uint128 marketId, uint256 maxMarketSize)",
"function setMaxMarketValue(uint128 marketId, uint256 maxMarketValue)",
"function setOrderFees(uint128 marketId, uint256 makerFeeRatio, uint256 takerFeeRatio)",
"function setSettlementStrategy(uint128 marketId, uint256 strategyId, tuple(uint8 strategyType, uint256 settlementDelay, uint256 settlementWindowDuration, address priceVerificationContract, bytes32 feedId, uint256 settlementReward, bool disabled, uint256 commitmentPriceDelay) strategy)",
"function setSettlementStrategyEnabled(uint128 marketId, uint256 strategyId, bool enabled)",
Expand Down
Loading

0 comments on commit 0c6de78

Please sign in to comment.