Architecture (v4)
Contracts
Core v4 Router: collects tax, enforces policy, emits events, calls marketplace adapters.
Acquisition Vault: accumulates ETH, holds pending assets between purchase and burn execution.
Marketplace Adapters: Seaport/Blur/Reservoir integrations with allowlists and slippage guards.
Burn Executor: sends NFTs to a dead address; emits
MiladyBurned(tokenId, txHash)
.
Data flows
Tax Capture — A fixed % on $MILSTR swaps routes to the Acquisition Vault.
Threshold Check — When vault ETH ≥
minSweepETH
, the system opens a sweep window.Price Guard — Floor reference from a time-weighted oracle (
floorTWAP
) with venue cross-checks.Sweep — Buy one or more floor Miladys respecting:
maxPremiumBps
over oracle floor,maxPerSweep
count,gasGuard
and MEV-share/private routing.
Burn — Transfer purchased Miladys to
0x000000000000000000000000000000000000dEaD
(or chain-equivalent).Accounting — Emit events; update counters; publish per-epoch stats.
All state changes are machine-driven; human authority is rate-limited, time-locked, and scoped to parameter updates only.
Last updated