Let me be clear about the scope here. Glamsterdam isn't some far-off dream, we've got real EIPs, Devnet-4 testing already underway, and a tentative H1 2026 target with June as the current aspirational date. The Ethereum Foundation's DevOps team has already validated three of the eight EIPs on testnet infrastructure. For those keeping score, that's further along than most upgrades get before hitting the community discourse stage.
The two headliner EIPs are doing the heavy lifting:
EIP-7732 (Enshrined Proposer-Builder Separation). This moves block building directly onto the Ethereum protocol instead of relying on external relays. Current system? Three builders control over 80% of all PBS blocks. ePBS claims to fix that, giving validators more power and reducing what we call MEV extraction by up to 70%. But, and this is the digression, external relays like mev-boost actually exist for good reasons. They decoupled builder incentives from validator interests, preventing a scenario where the proposer slot itself becomes the MEV-jackpot. Enshrining that relationship on-chain doesn't solve the problem, it just moves it. But back to the actual upgrade mechanics: ePBS introduces a Payload Timeliness Committee (PTC) and expands the propagation window from 2 seconds to roughly 9 seconds. That extra breathing room matters if parallel execution is going to work.
EIP-7928 (Block-Level Access Lists). This is where parallel execution lives. The upgrade requires every block to pre-declare all account and storage locations it'll touch, plus their post-execution state. Empirical data shows 60-80% of Ethereum transactions access disjoint storage slots. That means the remaining 20-40% can be parallelized by computing state diffs. Average BAL overhead runs about 70 KiB per block, modest enough to ship in production. I've been wrong on the technical lift of parallel execution before, having underestimated the consensus layer complexity on Beacon Chain rollouts, so take that with appropriate epistemic humility.
Here's what the combined effect looks like in the signal framework:
| Component | Current Limit | Glamsterdam Target | Expected Impact |
|---|---|---|---|
| Block gas limit | 60M | 200M | ~3.3x |
| Target TPS | ~1,200 | 10,000 | ~8x |
| Smart contract call costs | Baseline | -78.6% | Major UX shift |
| ETH transfer costs | Baseline | -71% | Moderate adoption lift |
| MEV extraction (best case) | Current | -70% | Validator efficiency |