TLDR
Ethereums upcoming Glamsterdam upgrade will change Layer 1 gas pricing for state and storage, making some operations more expensive while enabling higher base throughput and better long term scalability.
- Glamsterdam will reprice gas for state creation and access via EIP 8037 and EIP 8038, following testing on dedicated devnets and public testnets.
- Everyday ETH transfers to existing accounts keep the familiar 21,000 gas, but creating new accounts and writing storage become much costlier, affecting mints, airdrops, and some contracts.
- Developers must update hardcoded gas assumptions and test now, because successful gas repricing is a prerequisite for raising gas limits and achieving roughly three times current Layer 1 throughput.
Deep Dive
1. How Glamsterdam Reprices L1 Gas
Ethereum developers have confirmed that Glamsterdam includes gas fee adjustments focused on the cost of state creation and access, implemented through proposals EIP 8037 and EIP 8038. These changes rebalance what it costs to create accounts and touch storage so pricing better matches actual computational and hardware work, after years of state growth under the old schedule.
An architectural preview of Glamsterdam explains that it also introduces enshrined proposer builder separation and block level access lists, which restructure how blocks are built and validated and expand the block building window for validators. That same preview shows updated gas examples for transfers and storage writes under the new schedule, including higher charges for operations that grow state, such as new account creation and fresh storage slots, while preserving familiar costs for simple transfers to existing accounts on the execution path.
Developer alerts describe the gas repricing as a necessary step before pushing the Layer 1 gas limit significantly higher, with the goal of roughly tripling base throughput compared with today and supporting more rollup and application activity on Ethereums main chain.
2. What Changes For Fees And Users
For regular users, the headline is that plain ETH transfers to existing externally owned accounts still reference around 21,000 execution gas, which combines a base cost, a recipient access cost, and a value transfer component. The visible change is when a transaction creates new accounts or expands storage, where Glamsterdams schedule introduces much larger state charges for those operations.
Under the new pricing, creating a fresh account and writing new storage can require an order of magnitude more gas than today, which will raise costs for flows that constantly open new addresses or mint new tokens, such as airdrop campaigns or some on chain distribution schemes. At the same time, this discourages uncontrolled state growth and supports a path to higher gas limits per block, which can ease congestion and make fees more predictable over time.
Wallets, RPC providers, and node tooling are expected to update their gas estimation logic so ordinary users do not need to tweak manual settings, but you may see higher fees specifically when deploying contracts, minting tokens, or interacting with dapps that create many new accounts.
expect slightly higher fees for operations that expand state, but potentially smoother base chain performance as Ethereum prepares to handle more activity directly on Layer 1.
3. Contract Risks And What To Watch
Ethereum developers have explicitly warned that a small set of Layer 1 contracts are at risk from Glamsterdams gas repricing, especially those that rely on hardcoded gas values such as 2,300 gas send stipends, fixed internal call limits, or logic that assumes specific results from gasleft. Historical mainnet transactions have been replayed under the new schedule to identify where these assumptions fail.
Teams are being urged to test their contracts against the Glamsterdam rules on dedicated devnets and upcoming public testnets, and in many cases issues can be resolved by increasing transaction or internal call gas limits. However, some legacy designs may need code changes to avoid unexpected failures or degraded performance once mainnet gas costs shift.
Looking ahead, Glamsterdam is positioned in a broader roadmap that targets higher gas limits, more parallel execution, and eventual adoption of more advanced data structures in later upgrades. If Glamsterdam lands cleanly, with minimal contract breakage and stable client behavior, it becomes a key enabling step toward a faster, more scalable Ethereum base layer.
if you build or rely on Layer 1 contracts, monitoring Glamsterdam testing and ensuring your code does not depend on outdated gas assumptions is critical before mainnet activation.
Conclusion
Glamsterdams gas repricing raises the cost of state heavy operations today so Ethereum can safely raise gas limits and expand base layer throughput tomorrow. For most users, simple transfers stay familiar while new account creation and storage heavy flows get more expensive, shifting incentives toward leaner state usage. How smoothly developers adapt their contracts and infrastructure to the new gas schedule will determine whether Ethereum can unlock the next phase of Layer 1 scaling without sacrificing reliability or decentralization.
