PlatÃ¥berget: The Crucible for Ethereum’s Next Evolution, Glamsterdam, Opens for Public Testing

The Ethereum development community has officially launched PlatÃ¥berget, a crucial short-term testnet designed to serve as the primary public testing ground for the upcoming Glamsterdam upgrade. This vital initiative invites developers, validators, and enthusiasts alike to rigorously stress-test the network’s foundational changes before their wider deployment on Ethereum’s established testnets, Sepolia and Hoxton, and ultimately,…

 Avatar

by

7 minutes

Read Time

The Ethereum development community has officially launched PlatÃ¥berget, a crucial short-term testnet designed to serve as the primary public testing ground for the upcoming Glamsterdam upgrade. This vital initiative invites developers, validators, and enthusiasts alike to rigorously stress-test the network’s foundational changes before their wider deployment on Ethereum’s established testnets, Sepolia and Hoxton, and ultimately, the mainnet. The PlatÃ¥berget testnet is particularly significant as it introduces "breaking changes" that will necessitate updates for a wide array of decentralized applications and infrastructure tools, especially those relying on hardcapped maximum gas limits.

Understanding the Glamsterdam Upgrade: A Paradigm Shift

The Glamsterdam upgrade represents a significant leap forward for the Ethereum network, encompassing substantial modifications to both its consensus and execution layers. While the precise details of all implemented Ethereum Improvement Proposals (EIPs) are meticulously tracked under the Glamsterdam meta EIP-7773, key advancements are poised to reshape how the network operates. Among the most impactful changes are the introduction of protocol-level solutions for proposer-builder separation (PBS), aimed at enhancing decentralization and censorship resistance in block production. This involves enabling a more robust and secure separation between the entities that propose blocks and those that build them, a critical step towards a more robust and efficient consensus mechanism.

Furthermore, Glamsterdam introduces significant gas repricing mechanisms. These adjustments are not merely incremental; they are designed to address fundamental economic incentives within the network and are expected to have a far-reaching impact on virtually every application interacting with the blockchain. This includes a wide spectrum of tools, from user-facing wallets and decentralized application interfaces to the backend infrastructure that powers indexing services and gas estimation tools. The implications of these gas repricing changes are profound, necessitating a proactive approach from developers to ensure their applications remain compatible and performant post-upgrade.

Platåberget: A Stable Environment for Community-Driven Innovation

Unlike the ephemeral devnets that have preceded it, PlatÃ¥berget is engineered to operate for several months. This extended duration provides a stable and reliable environment for the community to experiment with the post-Glamsterdam iteration of Ethereum. The objective is to identify and resolve any potential issues or bugs in a controlled setting, thereby minimizing risks associated with the subsequent mainnet launch. This phased approach to testing is a cornerstone of Ethereum’s development philosophy, prioritizing robustness and security through extensive community involvement.

A key feature of PlatÃ¥berget is its accessible validator set. The testnet is designed to accommodate a relatively small, yet publicly joinable, validator pool. This allows individual stakers, decentralized validator technology (DVT) projects, and large-scale operators to seamlessly deposit new validators and thoroughly test their staking infrastructure. Crucially, it also offers a practical avenue for testing the newly introduced builder deposit workflows, a fundamental component of the evolving PBS architecture. The ability for anyone to participate and test these new workflows is paramount to ensuring the smooth integration of ePBS (economic proposer-builder separation) into the Ethereum ecosystem. The fork transition for PlatÃ¥berget is scheduled for August 20th, providing ample time for participants to make deposits and prepare for the network’s upgrade.

Navigating Platåberget: Resources and Tools for Participants

To facilitate widespread participation and effective testing, a comprehensive suite of resources has been made available. The Platåberget resources page offers a detailed summary of the EIPs included in the upgrade, provides information on client support, and tracks the current launch status. For those seeking in-depth technical specifications, the devnet-8 specification document outlines network settings, configuration values, bootnodes, and essential client release information.

For a streamlined user experience, the dedicated Platåberget website provides a convenient "Add Network" flow, simplifying the process of configuring both execution layer (EL) and consensus layer (CL) clients. To ensure participants have the necessary resources for testing, a faucet is available to dispense testnet ETH, which can be used for validator deposits and to cover transaction gas fees.

When running a node on Platåberget, participants are encouraged to note specific technical considerations. Client teams are actively preparing tagged releases for the Glamsterdam upgrade. In the interim, specialized container images are provided by EthPandaOps to ensure immediate access to compatible client software.

Consensus Layer Client Images:

  • Lighthouse: ethpandaops/lighthouse:glamsterdam-devnet-8
  • Lodestar: ethpandaops/lodestar:unstable
  • Nimbus: ethpandaops/nimbus-eth2:unstable
  • Prysm (Beacon Chain): ethpandaops/prysm-beacon-chain:glamsterdam-devnet-8
  • Prysm (Validator): ethpandaops/prysm-validator:glamsterdam-devnet-8
  • Teku: ethpandaops/teku:glamsterdam-devnet-8
  • Grandine: ethpandaops/grandine:glamsterdam-devnet-8

Execution Layer Client Images:

  • Besu: ethpandaops/besu:glamsterdam-devnet-8
  • Geth: ethpandaops/geth:glamsterdam-devnet-8
  • Erigon: ethpandaops/erigon:glamsterdam-devnet-8
  • Nethermind: ethpandaops/nethermind:glamsterdam-devnet-8
  • Reth: ethpandaops/reth:glamsterdam-devnet-8
  • Nimbus (EL): ethpandaops/nimbus-eth1:glamsterdam-devnet-8
  • Ethrex: ethpandaops/ethrex:glamsterdam-devnet-8

Support and Feedback: A Collaborative Effort

The Ethereum development community thrives on collaboration and open communication. For reporting bugs, issues, or providing feedback on the Platåberget testnet and the Glamsterdam specification, the Ethereum R&D Discord server is the primary hub. This platform allows for real-time discussions, problem-solving, and direct interaction with core developers and other community members. For those who prefer not to use Discord, issues can also be raised directly in the relevant specification repositories on GitHub, including consensus-specs, execution-specs, execution-apis, builder-specs, and beacon-APIs. This ensures that all feedback is captured and addressed systematically.

Broader Implications and Next Steps

The gas repricing implemented in Glamsterdam is a particularly critical area for application developers. The original article emphasizes a stark warning: "any tool that relies on a hardcapped maximum gas limit (think wallets, indexers and gas estimators) will break and needs to be updated." This highlights the potential for widespread disruption if developers do not proactively adapt their systems. The current block gas limit, a fundamental constraint, is being re-evaluated to accommodate the evolving economics and complexity of the network. Tools that have historically relied on a fixed, maximum gas limit will need to be reconfigured to account for the new pricing structures and potential variations.

The gas repricing extends beyond just the block gas limit. Individual operation costs are also being redefined. Notably, EIP-8037 introduces a separate "state gas dimension" for operations that result in the creation of new state on the blockchain. This means that actions such as creating a new account, deploying smart contract code, or writing to a previously unused storage slot will now incur a fixed cost per state byte (CPSB), assessed at runtime rather than being bundled into an upfront transaction fee.

This has tangible consequences for common operations. For instance, a standard ETH transfer will no longer be uniformly 21,000 gas. While transfers to an existing account will continue to operate under a similar pricing model (decomposed into TX_BASE_COST, COLD_ACCOUNT_ACCESS, and TX_VALUE_COST), sending funds to a non-existent account will incur an additional cost. This additional cost is calculated as STATE_BYTES_PER_NEW_ACCOUNT * CPSB, applied dynamically at runtime. Consequently, any application or tool that assumes a flat 21,000 gas cost for all transfers, or relies on a single gas dimension for estimation, will require significant revision. Developers are advised to consult EIP-2780 for details on decomposed intrinsic costs and EIP-8038 for information on increased state-access costs.

Following the extensive testing and feedback gathered from PlatÃ¥berget, the development roadmap includes a non-finality devnet. This subsequent phase will focus on testing more complex and potentially pathological consensus scenarios, further solidifying the network’s resilience. Once these devnets have demonstrated sustained stability, the Glamsterdam upgrade will be rolled out to the established, long-lived testnets, Sepolia and Hoxton. Only after these milestones are successfully achieved will the Ethereum mainnet commence its transition to the Glamsterdam era, marking a significant evolutionary step for the world’s leading decentralized platform.

For those eager to remain at the forefront of this development, continuous engagement with the Ethereum R&D Discord server, the All Core Dev calls, the Glamsterdam upgrade tracker on Forkcast, and the EthPandaOps Glamsterdam devnets GitHub repository are the most effective avenues for staying informed and contributing to the process. The launch of Platåberget signifies a critical juncture, inviting the entire Ethereum community to actively participate in shaping the future of the network.

About the Author

About the Author

Easy WordPress Websites Builder: Versatile Demos for Blogs, News, eCommerce and More – One-Click Import, No Coding! 1000+ Ready-made Templates for Stunning Newspaper, Magazine, Blog, and Publishing Websites.

BlockSpare — News, Magazine and Blog Addons for (Gutenberg) Block Editor

Search the Archives

Access over the years of investigative journalism and breaking reports