A tokenomics framework with mathematically guaranteed price boundaries through liquidity accumulation. Transforms unlimited downside risk into calculable bounded risk.
Ceiling: Driven by linear minting curveFloor: Backed by treasury-owned XYK liquidityWorst-case: 11–25% of ceiling, depending on bucket utilization
Price Ratchet: Growth raises floor and ceilingBidirectional Compression: Burning lowers ceiling, TOL raises floorAutomatic Liquidity: 66.6% of mints locked in TOL
TMC: Minting with supply-dependent linear price growthTOL: XYK liquidity from mints under community controlAxial Router: Routes to best price with fee burning
// TMC Ceiling
let ceiling = initial_price + (slope × total_supply / PRECISION);
// XYK floor
let k = TOL_native * TOL_foreign;
let floor_price = k / (TOL_native + tokens_sold)²;- TMCTOL Manifesto - Philosophical foundation and resilience architecture
- Specification - Framework foundation and core concepts
- L2 TOL - Second-order DAOs with autonomous liquidity
- Axial Router - Cross-LP routing mechanics
- Model - Tokenomics implementation
- Tests - 55 test cases validating system guarantees
- Tests Mirror - Live Test Documentation Suite
Run tests:
deno ./simulator/tests.js