blockchainsv
News

Ethereum Glamsterdam Upgrade Delayed to Q3 with New 200M Gas Limit Target

According to CoinMarketCap, the Ethereum Foundation has moved the Glamsterdam protocol upgrade to Q3 2026.

Caleb North·updated July 26, 2026

Ethereum Glamsterdam Upgrade Delayed to Q3 with New 200M Gas Limit Target

The stated targets are a 200-million gas-limit floor and stabilization of enshrined Proposer-Builder Separation, or ePBS. For contract teams, this is not a deployment signal. It is a planning constraint.

The relevant invariant is simple: no production assumption should depend on a protocol change until its execution parameters and activation path are concrete. Glamsterdam is delayed. The gas-limit target exists. The rest of the operational surface remains unspecified in the available confirmation.

The target is a floor, not an application guarantee

A 200-million gas-limit floor is the hard metric attached to the announcement. It describes a protocol-level target. It does not establish the gas profile of a specific contract call, batch executor, account-abstraction flow, or sequencer-integrated application.

Do not mutate application limits merely because the headline contains a larger gas number.

Teams with gas-sensitive paths should separate three layers:

  • the gas consumed by a single state transition;
  • the gas required by a transaction containing that transition;
  • the block-level limit under which competing transactions execute.

These are different constraints. A higher target at the block level does not automatically make an unbounded loop safe. It does not repair storage-heavy settlement. It does not remove the need for bounded iteration, explicit failure handling, and deterministic gas tests.

The practical action is narrow. Preserve current gas guards. Keep maximum batch sizes explicit. Test the failure branch when a transaction cannot fit the expected execution envelope. Treat every proposed optimization based on future block capacity as uncommitted until the relevant protocol behavior is finalized.

ePBS remains a dependency under stabilization

The Ethereum Foundation’s other stated reason for the delay is to stabilize enshrined PBS. That makes ePBS an active protocol dependency, not a settled background assumption.

For smart-contract authors, the immediate security question is not whether ePBS is desirable. It is whether any system already embeds assumptions about transaction inclusion, ordering, timing, or builder behavior that have not been revalidated against the eventual upgrade specification.

Audit those assumptions now.

Search for execution paths that implicitly rely on a transaction being processed in a particular sequence. Inspect liquidation logic, auction settlement, oracle update handling, keeper jobs, and multi-transaction workflows. The attack surface is not the phrase “ePBS.” The attack surface is an undocumented assumption exposed by a changed execution environment.

Keep these assumptions in code comments and test cases. If an invariant depends on ordering, state that invariant directly. If it cannot be stated directly, it cannot be audited reliably.

What to freeze, and what to monitor

Glamsterdam’s move to Q3 2026 changes the schedule, not the discipline. Avoid roadmap-driven contract mutations. Avoid removing safeguards to accommodate a target that has not yet become live protocol behavior.

Maintain a short release gate:

  • No capacity-dependent logic without a bounded fallback.
  • No batch-size increase without reproducible gas measurements.
  • No ordering-dependent state mutation without an explicit invariant.
  • No ePBS-related design claim without a testable execution assumption.
  • No production rollout keyed solely to the announced Q3 window.

The confirmed facts are limited: Glamsterdam is delayed to Q3 2026, the Foundation is targeting a 200-million gas-limit floor, and ePBS stabilization is part of that work. That is sufficient to update engineering plans. It is not sufficient to rewrite production assumptions.