Contracts
Last updated
Last updated
Pool.sol
Battle.sol
PriceRouter.sol
PythService.sol
liquidatePool()
Liquidates the battle pool and sets the end price.
Input:
poolId
(Unique identifier of the battle pool)
priceUpdateData
(Price update date for the pyth pricing, obtained from )
claimPayout()
Claims the payout of a battle position.
Input:
battleIds[]
(Unique identifiers of the battle positions to claim)
enterBattleForCollection()
Mints a battle position that belongs to a battle pool. If the battle pool does not exist yet it creates the battle pool.
Input:
collection
(The address of the underlying trading pair of the battle pool)
amount
(The amount in WEI entered into the battle pool)
direction
(The side of the battle, 0 is UP, 1 is DOWN)
validUntil
(Timestamp in seconds until when the sent transaction should be valid)
priceUpdateData
(Price update date for the pyth pricing, obtained from )
enterBattle()
Mints a battle position that belongs to an existing battle pool.
Input:
poolId
(Unique identifier of the battle pool)
amount
(The amount in WEI entered into the battle pool)
direction
(The side of the battle, 0 is UP, 1 is DOWN)
priceUpdateData
(Price update date for the pyth pricing, obtained from )