This page consolidates the LUMINA token’s supply mechanics. For the contract-level deep-dive, see /concepts/lumina-token.Documentation Index
Fetch the complete documentation index at: https://docs.lumina-org.com/llms.txt
Use this file to discover all available pages before exploring further.
Supply
LUMINA is the protocol’s native ERC-20 with capped initial supply. The deflationary mechanism is the auto-burn — supply only decreases over time as protocol usage grows.Allocation (V5.x)
| Bucket | Purpose | Vesting |
|---|---|---|
| Founder | Team alignment | Locked in FounderVesting, 31-day months |
| Treasury | Operations & grants | Multisig-controlled |
| Liquidity | DEX market-making | Unlocked, deployed to Uniswap |
| Community | Airdrops, incentives | Released by governance vote |
LuminaToken.totalSupply() and the FounderVesting /
TreasuryVesting contracts.
Auto-burn mechanics
Every premium paid generates a small fee that accrues to the protocol in USDC. When the accumulated fee crosses $500 OR after 50 successful purchases (whichever first),TWAPBurner V2 triggers:
- Read 1-hour LUMINA/USDC TWAP from the DEX (mitigates MEV).
- Swap accumulated USDC fees → LUMINA.
- Burn the resulting LUMINA via
LuminaToken.burn().
Buyback engine (planned)
A separateBuybackEngine (audit fix M-10 added commit-reveal MEV protection)
will handle larger periodic buybacks from the treasury. Operationally, these
larger buys go through a private mempool to mitigate sandwich attacks.
Sustainability model
The protocol is designed to be self-funding once usage reaches a target threshold:- Premiums fund both the bond vault (for payouts) and the burn engine.
- The vault solvency floor (audit fix M-11) ensures
burnFromReservesnever starves the bond payout queue.