On May 31, 2026 AERE Network deployed AereCoinbaseSplitter, a tiny atomic contract that finally backs the whitepaper §3.3 claim with on-chain reality. Every block's validator rewards now flow through it: 37.5% to permanent burn, 62.5% to the validator. The burn vault has no withdraw function, no admin escape, no upgrade path. What goes in stays burned forever.
splitter.totalBurned() or the burn vault's balance on the explorer.
| Contract | Address | What it does |
|---|---|---|
| AereCoinbaseSplitter | 0xb4b0eCe9011613A5b84248a9B42a0f309E6F01Ec | Atomic 37.5% / 62.5% splitter. Validators call splitToSelf() (or splitAndDistribute(validatorAddr)) with their accumulated coinbase as msg.value. Contract atomically forwards 3750/10000 of value to AereFeeBurnVault, remainder back to the validator's address. Emits Burned and Distributed events with cumulative totals. Burn rate is capped at 50% by contract code; Foundation can adjust within that ceiling. |
| AereFeeBurnVault (already deployed) | 0x696afDF4f814e6Fd6aa45CE14C498ed9375fB2c6 | Permanent burn destination. Has no withdraw function. Has no admin. Has no upgrade path. Once AERE enters this contract, it is mathematically unreachable. Anyone can verify this by reading the bytecode. |
Three layers, each transparent on chain:
AereCoinbaseSplitter.splitToSelf() with the balance as msg.value.The forwarder daemon is the only off-chain component, and it's tiny: ~5 MB RAM, runs alongside the existing Besu node, with no new infrastructure required.
The alternative, modifying Besu's block producer to enforce the split at consensus level, would have required forking Hyperledger Besu, maintaining the fork against every upstream release, and coordinating a hard-fork-style network upgrade for every parameter change. That's real engineering cost.
The splitter-plus-daemon design is observationally identical from outside the chain. The on-chain math is the same. The cumulative burn is the same. The only difference is that it ships in days instead of months, costs nothing ongoing, and leaves Besu unchanged.
The trade-off: validators technically could stop running the daemon and pocket 100% of fees. But there are 7 validators today, all Foundation-operated, and any divergence between coinbase receipts and splitter calls would be immediately visible on chain. Public accountability is the enforcement mechanism today. Phase 2 (post-audit, with hard-fork upgrade) can move this to consensus-level enforcement.
Anyone can query in O(1):
AereCoinbaseSplitter.totalBurned(), lifetime AERE burned through this contractAereCoinbaseSplitter.totalDistributed(), lifetime AERE returned to validatorsAereCoinbaseSplitter.burnedBy(addr), per-validator burn contributionAereFeeBurnVault.balance, total locked AERE in the vaultAereCoinbaseSplitter.burnBps(), current burn rate (3750 = 37.5%)The network status page now displays a live "Deflation tracker" card showing the lifetime burn in real time. The number starts at zero and grows continuously as the forwarder daemons run.
AERE was previously gas-inflationary, 100% of validator block rewards stayed in the validator's pocket. Combined with the per-block emission schedule from genesis, this produced a slowly-inflating supply curve.
With the splitter active, the picture changes:
Net inflation = emissions − burn. At today's transaction volume, emissions still outpace the burn, but this flips as gas usage grows. Every Tier-1 feature shipped this session (paymasters, cross-chain messaging, intent bridging, oracle updates, randomness submissions, consumer-app activity, dApp deployments) contributes incremental gas → incremental burn.
This is the "ultrasound money" dynamic Ethereum got post-EIP-1559. The crossover point, where AERE becomes net deflationary, moves closer with every dApp that ships and every user that onboards.
updatePriceFeeds call pays AERE gas → burns.submitRound call pays AERE gas → burns.Each shipped feature isn't just a capability, it's a stream feeding the deflation flywheel.
Tier 1.9 ships batch-auction settlement on AereSwap for MEV-resistant trading. Tier 1.10 adds Fee Monetization / Sequencer Fee Sharing, developer revenue share, strong builder magnet. Tier 1.11 tunes sub-second block times.
AERE's economic engine now points the right direction: every transaction is mildly deflationary, every shipped feature drives more transactions. The flywheel is on.
← Back to all posts