Mathematical Expressions & Approach
⚙️ Mathematical Framework
Core Variables
| Symbol | Definition |
|---|---|
M_target | Market cap target for the current round. |
M_current | Real-time market capitalization (oracle fed). |
D_nominal | Nominal duration (the default round timer). |
SpeedFactor | Acceleration multiplier. |
D_actual | Effective duration after speed adjustment. |
A_round | Burn allocation for that round (% of total supply). |
Dynamic Acceleration Formula
if M_current < M_target:
SpeedFactor = 0.25
else:
SpeedFactor = 1 + (M_current / M_target)
D_actual = D_nominal / SpeedFactor