Payout formula
If the actual price falls within the predicted range, the bet wins and is rewarded from the token's reserve using a computed multiplier, in addition to returning it. Core formula is
Base Payout rewards the quality of the prediction based on how early, narrow, and bold it is. It reflects the bet’s accuracy and informational value.
Reserve Bonus is an additional reward drawn from surplus liquidity, shared proportionally among winning bets. It scales with stake size and only activates when the reserve is above a target threshold.
Let's look at each payout component in detail.
Where:
Prediction Quality is a multiplier coefficient computed at betting time
Reserve Liquidity is cap enforcement computed at resolution time
Prediction Quality components are
Range Sharpness = (High - Low) / Current Price
Boldness = 1 - Local Confidence
Lead Time = Resolution Time - Placement Time
The multiplier formula:
Initial Monte Carlo simulation suggested Scaling Factor of 1 at project launch with the Weights set to 1/3. See quality calculations and their suggested launch configs in the ‘Key parameters’ section.
We use exponential weighting (i.e. raising each quality score to a weight) instead of additive weighting to compute overall Prediction Quality. This approach reflects the intuition that a strong prediction must balance timeliness, conviction, and precision, and excelling in one area cannot fully compensate for weakness in another.
Reserve Liquidity is simply its size that caps edge case payouts.
The payout system ensures that winning bets are fully covered by the token’s current reserve:
At the moment of betting, the system checks whether a bet’s calculated payout based on its Prediction Quality score is fully covered by the reserve. If not, the bet is rejected.
At the moment of resolution, the system checks whether a payout will drain the reserve in spite of its initially calculated safety. If so, it pays out as much as possible, waives the remainder, and attributes the difference to risk.
Where:
Bonus Share is the share of the reserve bonus pool allocated to a winning bet
Bonus Pool is the portion of the token’s reserve set aside for bonuses
Naturally, Reserve Bonus is capped by the available funds on top of Target Level.
Last updated