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

  1. Tax Capture — A fixed % on $MILSTR swaps routes to the Acquisition Vault.

  2. Threshold Check — When vault ETH ≥ minSweepETH, the system opens a sweep window.

  3. Price Guard — Floor reference from a time-weighted oracle (floorTWAP) with venue cross-checks.

  4. Sweep — Buy one or more floor Miladys respecting:

    • maxPremiumBps over oracle floor,

    • maxPerSweep count,

    • gasGuard and MEV-share/private routing.

  5. Burn — Transfer purchased Miladys to 0x000000000000000000000000000000000000dEaD (or chain-equivalent).

  6. 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