Ethereum's Glamsterdam Fork Will Break Wallets and Contracts That Assume Fixed Gas Costs
Ethereum Foundation developers issued a developer advisory on August 17, accompanying the launch of the Platåberget testnet, warning that Glamsterdam, the network's next hard fork targeting a Q4 2026 mainnet launch, will invalidate years of assumptions baked into smart contracts, wallets, and developer tooling about how much gas Ethereum operations cost.
The warning is not theoretical. The Ethereum Foundation has published a lookup tool at ethereum.github.io/repricing-impact/ where developers can check whether their deployed contracts are at risk. Testing is already open on the Platåberget testnet, which launched August 17 and received the Glamsterdam fork on August 20.
What Is Changing and Why
Glamsterdam bundles two upgrade tracks: the Gloas execution layer changes and the Amsterdam consensus layer changes. The most consequential piece for developers is a cluster of 19 gas repricing proposals organized under EIP-8007, targeting state access and state creation operations that were last repriced during the Berlin fork in April 2021.
Although 95% or more of Ethereum transaction volume now flows through Layer 2 rollups, the repricing primarily affects L1 smart contract logic, infrastructure tooling, and direct mainnet integrations. End users transacting on L2 will largely feel no direct impact.
The core problem is that Ethereum's state has grown substantially since 2021, and the block gas limit has risen alongside it. Operations that create permanent entries in Ethereum's global state database, including deploying new contracts, creating new storage slots, and sending ETH to addresses that have never transacted before, are currently priced as if that state burden is trivial. It is not.
EIP-8037 addresses this by introducing a separate "state gas" meter. Creating a new account will carry an additional 183,600 state gas charge on top of regular gas costs. Deploying a new contract will cost roughly 1,530 state gas per byte of code. The first write to a new storage slot will require 97,920 state gas. These charges are designed to stack on top of existing gas costs rather than replace them, consistent with the EIP's separate state-gas metering model. This charge for new storage slot creation is distinct from the cost of writing to a slot that already exists; that scenario is addressed separately by EIP-8038.
EIP-8038 raises the cost of accessing existing state. The SSTORE first-write surcharge rises from 2,800 to 10,000 gas. Cold account access goes from 2,600 to 3,000 gas. CREATE operations increase from 7,000 to 12,000 gas. A separate repricing, EIP-7976, floors calldata costs at 64 gas per byte for both zero and non-zero bytes, up from the current 10 gas per zero byte and 40 gas per non-zero byte.
The 21,000 Gas Rule No Longer Holds
One of Ethereum's oldest assumptions is collapsing. Since the network launched, a standard ETH transfer has cost exactly 21,000 gas. EIP-2780 decomposes that flat fee into explicit components. Transfers between existing accounts remain roughly 21,000 gas, but sending ETH to a fresh address that has never appeared on-chain will now require approximately 183,600 additional state gas. That is roughly 8.5 times the cost of an ordinary transfer.
"Every time someone sends ETH to a fresh address that has never appeared on the blockchain before, Ethereum has to create a new entry in its global state database," CryptoBriefing noted in its coverage of the EIP rationale. "That state entry lives on the network forever, occupying storage that every full node must maintain."
Parithosh Jayanthi of the Ethereum Foundation summarized the direction: "The upgrade would change the cost of actions on Ethereum, with high-level computation becoming cheaper while state becomes more expensive."
The EF's protocol DevOps team put the developer risk plainly: "Any tool relying on a hardcoded maximum gas limit will break."
Four Risk Categories for Deployed Contracts
The Foundation's analysis of historical transaction replay identified four categories of contract exposure. Most contracts will see no meaningful change. Some will succeed with different gas consumption but the same outcome. Others will fail only because frontends or infrastructure pass in hardcoded gas limits that no longer cover the actual cost, a fixable problem. The fourth category covers contracts that are genuinely broken: those with fixed gas stipends in callback patterns, hardcoded gas values in internal calls, or logic that branches on the gasleft() opcode's return value.
The Ethereum Foundation has published a full developer checklist covering recommended next steps, including auditing airdrop and payroll contracts, updating wallet gas defaults, coordinating with RPC providers, and joining the EF Discord for real-time guidance. The lookup tool at ethereum.github.io/repricing-impact/ is the starting point for assessing deployed contract exposure.
Elevated Risk for South Asian and African Builders
For developers in South Asia and Africa, the practical stakes are high. India is currently the top source of newcomer Ethereum developers globally, with Asia accounting for 32% of blockchain developer mindshare overall.
Contracts using callback and stipend patterns, a common design choice during the 2022 to 2024 deployment era, are the highest-risk category identified by the EF. Development teams that shipped airdrop contracts, DeFi frontends, and meta-transaction relayers during that period should treat these patterns as priority audit targets regardless of their origin.
The EIP-2780 wallet breakage problem carries particular weight in African markets. Peer-to-peer remittance flows in Nigeria, Kenya, and Ghana frequently involve sending funds to new addresses, a pattern that will see substantially higher gas costs once Glamsterdam activates.
Wallet apps that hardcode the 21,000 gas assumption will silently underestimate costs for those transfers after Glamsterdam activates.
South Africa, which now has 310 FSCA-licensed crypto exchanges operating under formal CARF reporting requirements, faces additional exposure through internal gas estimation tooling used by custody platforms.
Approximately 81% of Ethereum's Beacon Chain nodes sit in the US and Europe, which means African developers are largely dependent on third-party RPC providers for gas estimation. Any delay in those providers updating their APIs after mainnet activation creates a risk window for dApps serving African users. Ethereum Nigeria (EthereumNigeria.eth) is currently running campus developer programs in August 2026 that offer local builders a direct entry point into community support and testnet coordination.
What Comes Next
Glamsterdam's stated ambition is to raise Ethereum's block gas limit from roughly 60 million gas today toward a target floor of 200 million gas, a 3.3x increase made possible by more accurately pricing the operations that previously made high limits dangerous.
The upgrade also includes EIP-7732, which moves proposer-builder separation into the protocol itself. By enshrining this separation at the protocol layer, EIP-7732 may level the playing field for block inclusion for DeFi builders in emerging markets who have historically had limited access to sophisticated MEV infrastructure. EIP-7954 raises the smart contract size limit from 24 KiB to 64 KiB.
The Platåberget testnet is permissionless and open for testing now. Sepolia and Hoodi, the longer-running public testnets, are next in line before any mainnet date is confirmed.
With Ethereum's DeFi contracts securing roughly $41.84 billion in total value locked and supporting $146.70 billion in USD-pegged stablecoins, developers carrying technical debt from the 2022 to 2024 deployment era have a shrinking window to act before Q4.