Cointime

Download App
iOS & Android

Reth AlphaNet

From garadigm by Georgios Konstantopoulos

Contents

Today, we are excited to open source Reth AlphaNet, an OP Stack-compatible testnet rollup aimed at maximizing Reth performance and enabling experimentation of bleeding edge Ethereum Research.

With this post, we hope to get developers excited to contribute and build on AlphaNet with experiments, performance optimizations, and push the frontier of Ethereum systems research, engineering and tooling with us.

What is Reth AlphaNet?

Reth AlphaNet is an OP Reth Rollup with the following characteristics:

  • Testnet: It’s a testnet rollup, holding no assets of real value.We may periodically reset it if we want to introduce breaking changes.We are open to either full reset or migrating some state across resets.
  • We may periodically reset it if we want to introduce breaking changes.
  • We are open to either full reset or migrating some state across resets.
  • Experimentation: It initially comes with 3 EIPs implemented and tested, which are not available in any other network at the time of writing of the post:EIP-3074: AUTH and AUTHCALL instructions (source).EIP-7212: Precompile for secp256r1 curve support (source).EIP-2537: Precompiles for BLS12-381 curve operations (source).
  • EIP-3074: AUTH and AUTHCALL instructions (source).
  • EIP-7212: Precompile for secp256r1 curve support (source).
  • EIP-2537: Precompiles for BLS12-381 curve operations (source).
  • High Performance: It will aim to break the gigagas barrier (1 gigagas per second) and confront the state growth problem head on.Reth has been benchmarked at 100-200 megagas per second on the alpha.13 version (December 4th 2023) for "live sync" (incl. sender recovery, execution, hashing, and trie), and 1-3 gigagas/s for "historical sync" (only execution) on a 16-core @ 3.1GHz, 512GB RAM machine with a fast SSD.We are on beta.5 (April 3rd 2024), and we've merged multiple optimizations since the original benchmark.We invite the community to review the benchmarks and help us with further stress testing the code.
  • Reth has been benchmarked at 100-200 megagas per second on the alpha.13 version (December 4th 2023) for "live sync" (incl. sender recovery, execution, hashing, and trie), and 1-3 gigagas/s for "historical sync" (only execution) on a 16-core @ 3.1GHz, 512GB RAM machine with a fast SSD.
  • We are on beta.5 (April 3rd 2024), and we've merged multiple optimizations since the original benchmark.
  • We invite the community to review the benchmarks and help us with further stress testing the code.

Zooming in:

  1. AlphaNet implements the OP Stack standard's Ecotone Hard fork via the Node Optimism crate.
  2. Bridging in and bridging out of the rollup will work same as stock OP Stack. The deposit and withdrawal delays will be on the lower end, optimized for developers wanting to end to end test bridge flows in wallets, block explorers, and other infrastructure.
  3. We do not have a strong view on what data availability mechanism AlphaNet should use. We will start with blobs and calldata, and will eventually explore multiplexing across multiple data availability layers based on fees. We are also looking at OP Plasma.

The whole codebase is <1500 lines of Rust code (LoC), including tests:

AlphaNet is now open sourced under the Apache/MIT permissive license, for anyone to fork, modify or launch.

What is the Reth SDK?

AlphaNet is built on top of Reth, rather than forking it.

Our original vision of Reth describes it as not just a node, but a Software Development Kit (SDK), as legos for building EVM-centric infrastructure.

Forking nodes is extremely brittle, it's harder to propagate updates across the ecosystem and rebasing large feature branches is hard. It also means lack of principle around where code changes happen.

The Reth SDK is a new paradigm for building nodes, specifically built for customization and for the rollup-centric roadmap.

AlphaNet implements traits provided by the Reth SDK's Reth node builder API, allowing extreme customization without forking the node. This relates closely to the original Erigon architecture of a node that separates concerns and allows running components like the transaction pool or the RPC as separate processes. The Reth SDK takes it even further using Rust's advanced type system and clean abstractions.

Here are some example modifications you can do on the node:

  1. Custom RPCs: Spinning up additional RPC methods and namespaces.
  2. Custom EVMs: Overriding the EVM's precompiles, instructions, and more.
  3. Custom Block Builder: Building blocks with your own orderflow or with a custom mempool.

We intend to share more information about how to use the Reth SDK (or Reth Core) in the coming months, as we drive it to feature completeness. We could not be more excited about this. For now, the examples and the NodeBuilder are the best things to look for in the codebase.

Why build AlphaNet?

We called it AlphaNet because it is “alpha” software for experimentation, but also “alpha” because it provides edge to developers that learn how to use its “developer preview” features.

AlphaNet's goals are:

  1. Enable developers to experiment with Ethereum nodes using Reth's modular architecture:AlphaNet can serve as a distribution channel for research ideas, and encourage Layer 2 experimentation.AlphaNet's node extensions were chosen for their ability to enable applications that enhance the onchain user experience, and drastically reduce cost for existing applications that improve UX.Reth exposes Revm's new EVMBuilder API (PRs) which enables developers to extend the EVM with custom opcodes, instructions, gas tokens and more.The Reth SDK will also allow swapping out key node components like the block executor, the state root algorithm, and already supports swapping out most other components like the networking stack, the block payload builder, database, and more.
  2. AlphaNet can serve as a distribution channel for research ideas, and encourage Layer 2 experimentation.
  3. AlphaNet's node extensions were chosen for their ability to enable applications that enhance the onchain user experience, and drastically reduce cost for existing applications that improve UX.
  4. Reth exposes Revm's new EVMBuilder API (PRs) which enables developers to extend the EVM with custom opcodes, instructions, gas tokens and more.
  5. The Reth SDK will also allow swapping out key node components like the block executor, the state root algorithm, and already supports swapping out most other components like the networking stack, the block payload builder, database, and more.
  6. Test Reth's performance at the extremes, to 1 gigagas per second and beyond.We hope to hit the state growth performance bottleneck, and discover ways to solve it, using research techniques already tested out on Ethereum and Base mainnet.We hope to experiment with state expiry, rent, compress & revive-style techniques using witnesses, and anything that lets us move the needle there.We will also deploy other techniques we've been talking about for a long time, such as parallel EVM (Block STM-based for live sync and by calculating the optimal schedule for historical sync), JIT/AOT EVM, alternative state root implementations & optimizations, multi-tenancy, and more. We already have proof of concepts for parallel EVM and JIT/AOT, and we're going to start pushing them forward more in the coming months.
  7. We hope to hit the state growth performance bottleneck, and discover ways to solve it, using research techniques already tested out on Ethereum and Base mainnet.
  8. We hope to experiment with state expiry, rent, compress & revive-style techniques using witnesses, and anything that lets us move the needle there.
  9. We will also deploy other techniques we've been talking about for a long time, such as parallel EVM (Block STM-based for live sync and by calculating the optimal schedule for historical sync), JIT/AOT EVM, alternative state root implementations & optimizations, multi-tenancy, and more. We already have proof of concepts for parallel EVM and JIT/AOT, and we're going to start pushing them forward more in the coming months.

What is the roadmap?

Our short-term roadmap for AlphaNet is as follows:

  1. Launch a hosted version of AlphaNet on Conduit, targeting 50 megagas/s, and eventually ramping up to 1 gigagas/s. If the nodes we run end up not being able to keep up with the sequencer due to state growth, we may possibly restart the experiment from zero, and try again.
  2. Distribute modified Foundry builds via the foundryup --alphanet command, so that any Foundry developer can access tooling for the node’s extensions.
  3. Use Rivet as an “Experimental Developer Wallet”, in order to iterate on Wallet UX for EIP-3074, BLS signatures, and native Passkey support.

We're particulary excited for EIP-3074 on AlphaNet with Foundry and Rivet, and recommend the entire ecosystem to prepare for its upcoming deployment in Ethereum L1 as of the All Core Devs meeting on April 11th 2024. If you want to work on EIP-3074 Invokers, help clean up our Foundry integration, or contribute to Rivet, please reach out.

Medium-term:

  1. We would like to try out other EIPs & RIPs like RIP7560 and EOF (already implemented in Revm). What else should we try?
  2. Push hard on the Reth performance optimizations mentioned in the "Why build AlphaNet?" section above.
  3. Push for the second OP Fault Proof implementation in Rust using Reth (FPVM choice TBD, between RISCV and MIPS), accelerating the OP Stack's Stage 2 Fault Proof roadmap.

We hope that Reth will be a fundamental building block for every Layer 2's scaling strategy.

Our long-term goal is to scale Ethereum and its L2 ecosystem together with the community. We will use AlphaNet as a feedback loop for pushing the frontier and deploying the best technology in production L1s and L2s. We invite the community to share with us what they'd like us to try out, or write code with us.

AlphaNet will be launched soon after Reth 1.0, before the end of Q2.

The Reth SDK provides very powerful abstractions for building modified performant nodes, and we think this is just the beginning. In the coming weeks we will be sharing everything we have been building with the Reth SDK. We will also share optimizations and architecture improvements for breaking through the performance and feature barriers required to reach web scale cryptocurrency.

Comments

All Comments

Recommended for you

  • SpaceX Shares Drop 10% Intraday

    On June 22, SpaceX (SPCX.O) shares fell for the third consecutive trading day, with intraday losses widening to 10%.

  • BitMine Increases ETH Holdings by Over 52,000, Total Holdings Exceed 5.67 Million ETH

    As of June 21, Eastern Time, BitMine's total cryptocurrency and cash holdings, including the 'Moon Landing Project', amount to $10.7 billion. BitMine holds 5,672,956 ETH (an increase of 52,202 ETH from last week), which represents 4.7% of the total Ethereum supply of 120.7 million ETH. Additionally, BitMine holds 205 BTC, shares in Beast Industries worth $180 million, $104 million in Eightco Holdings (NASDAQ: ORBS), and $601 million in unsecured cash. As of June 21, 2026, the total amount of ETH staked by BitMine is 4,718,677 ETH, valued at $8.2 billion based on an ETH price of $1,733.

  • BTC Surpasses $65,000

    Market data shows that BTC has surpassed $65,000, currently priced at $65,013.22, with a 24-hour increase of 1.59%. The market is highly volatile, so please ensure proper risk management.

  • Intercontinental Exchange ICE and OKX Establish Joint Venture OKXICE

    On June 22, the Intercontinental Exchange (ICE), the parent company of the New York Stock Exchange, announced the establishment of a joint venture named OKXICE with OKX in the cryptocurrency sector, with both parties holding a 50% stake. The specific business scope and operational details of the joint venture have not yet been disclosed. ICE previously operated the cryptocurrency futures platform Bakkt, and this collaboration with OKX may further strengthen its strategic positioning in the digital asset space.

  • SpaceX Begins Issuing Unsecured Senior Notes

    On June 22, according to filings with the U.S. Securities and Exchange Commission, SpaceX (SPCX.O) has started issuing unsecured senior notes, which will be used to repay outstanding borrowings. SpaceX (SPCX.O) will offer the notes to qualified institutional buyers and non-U.S. persons.

  • Strategy Acquires 520 Bitcoins for $34.9 Million

    Strategy acquired 520 bitcoins for a total price of $34.9 million last week.

  • Crypto Trading Company Fomo Completes $75 Million Series B Financing at $550 Million Valuation

    On June 22, crypto trading startup Fomo announced the completion of a $75 million Series B financing round, led by Index Ventures, with participation from Union Square Ventures, Zynga co-founder Mark Pincus, Discord CEO Humam Sakhnini, and Eventbrite co-founder Kevin Hartz, bringing the company's valuation to $550 million. Fomo was founded in 2025 by former dYdX team members Paul Erlanger, Se Yong Park, and Prashan Dharmasena.

  • Iran Central Bank Begins Efforts to Unfreeze Frozen Assets

    On the 22nd local time, Iranian Finance Minister Madani Zadeh stated that the Central Bank of Iran has begun taking necessary measures to promote the unfreezing of Iran's frozen assets, although "specific details and amounts are unclear." The Governor of the Central Bank, Abdolnaser Hemmati, mentioned that the recent talks in Switzerland were "intense and challenging," but the final outcome has progressed "largely according to the goals set by the Iranian delegation." Hemmati expressed satisfaction with the significant progress made regarding the issue of Iran's frozen assets. In the coming days, these funds will be gradually and systematically activated under the decisions and directives of the Central Bank of Iran. (CCTV)

  • Bank of America: Fed Expected to Raise Rates by 25 Basis Points in September, October, and December 2026

    On June 22, Bank of America stated that it expects the Federal Reserve to raise interest rates by 25 basis points in September, October, and December 2026, revising its previous forecast that rates would remain unchanged this year.

  • Nomura: The Fed's June Meeting May Mark a Key Turning Point for the Credit Cycle and AI Boom

    On June 22, Nomura Securities stated that the Federal Reserve's June meeting may not be an ordinary pause but could be viewed as a critical turning point marking the end of the credit cycle and the AI boom a decade from now. Naka Matsuzawa, Nomura's Chief Macro Strategist, pointed out in a recent report that the market has overestimated the urgency of immediate rate hikes by the Fed this year while severely underestimating the depth and persistence of the long-term rate hike path, showing a lack of caution towards real medium- to long-term risks. The firm anticipates that the Fed will likely remain on hold throughout 2026, and once the policy stance of Waller becomes clearer, along with inflation expectations being confirmed during a decline in oil prices, the current market pricing of about 1.5 rate hikes is expected to be swiftly adjusted. However, Matsuzawa emphasized that the real risk does not lie in whether the Fed raises rates once or twice this year, but rather in how likely these preventive measures could evolve into a complete and sustained tightening cycle.