From Gas Limit to Keyed Nonces: How to Understand the Next Stage of Ethereum's Scalability?

marsbitPublished on 2026-05-14Last updated on 2026-05-14

Abstract

From Gas Limits to Keyed Nonces: Understanding the Next Phase of Ethereum Scalability This article explores how recent Ethereum developments focus on moving complexity away from end-users, wallets, and DApps to the protocol layer. It discusses the consensus around significantly increasing the Gas Limit to 200 million, a change aimed at reducing fees and improving network capacity. However, it emphasizes that this increase is part of a holistic approach that includes mechanisms like enshrined Proposer-Builder Separation (ePBS) and Block-Level Access Lists to manage state growth and maintain node decentralization. The piece also delves into Keyed Nonces (EIP-8250), a proposed upgrade to Ethereum's transaction ordering. It explains how moving from a single, linear nonce queue per account to multiple independent nonce domains ("channels") can enable parallel transaction streams for different use cases. This is particularly crucial for privacy protocols and smart wallets, reducing transaction conflicts and unlocking new design possibilities. Ultimately, the article argues that these technical upgrades—alongside native account abstraction and cross-L2 interoperability—are converging towards a singular goal: enhancing the overall user experience. This means making on-chain interactions smoother, safer, and more cohesive, with wallets serving as the critical interface translating complex protocol improvements into intuitive user actions.

Author: imToken

Objectively speaking, for some time now, many users' intuitive understanding of Ethereum has often not come from roadmap or developer meetings, but from specific on-chain operations.

For example, in recent years, what everyone has personally felt includes lower Gas during transfers, improved cross-chain interoperability experiences, and so on. This is precisely why Ethereum's scaling has never been a simple 'performance race' problem—for ordinary users, higher TPS, larger blocks, and more complex underlying architectures only make sense when they are truly translated into lower costs, smoother operations, and safer wallet experiences.

And recently, a series of new developments in Ethereum happen to point towards Ethereum's attempt to systematically shift the complexity that was previously borne by wallets, DApps, third-party relayers, and users themselves, forward to the protocol layer.

Among these are Keyed Nonces with Vitalik's involvement, the directional consensus formed around the 200 million Gas Limit floor in the Glamsterdam upgrade, and the series of subtle clues in the 2026 roadmap that continue to emphasize native account abstraction, cross-L2 interoperability, and L1 security strengthening.

I. Gas Limit Increased to 200 Million?

First, let's look at the most easily perceived point for users: Gas Limit.

As is well known, in the Ethereum network, every transaction (whether it's a transfer or a contract interaction) consumes a certain amount of Gas, and the Gas Limit capacity of each Ethereum block is fixed, meaning the number of 'slots' is limited: the more slots, the more 'passengers' can be transported in the same time period; the more slots are tight, people have to bid for the same seat, and Gas fees also rise.

Theoretically, expanding the block Gas limit would indeed directly and significantly improve the performance of the Ethereum mainnet. However, in the past, against the backdrop of significant developments in routes like L2, Ethereum has been relatively cautious and restrained about this. Most of the scaling pressure has been intentionally directed towards the L2 track.

Looking at the expansion curve of Ethereum's Gas Limit reveals that after the Ethereum network's Gas Limit first broke through 10 million from 8 million in September 2019, it wasn't until this year, over 7 years, that the Gas Limit increased from 8 million to 60 million. Especially, it truly entered the acceleration phase only in 2025—from 30 million to 36 million in February, increased again to 45 million in July, and upgraded to 60 million after the Fusaka upgrade in December.

It can be said that most of the expansion was squeezed into the year 2025. Of course, as we mentioned earlier, 2025 is also a crucial year in Ethereum's development history. The Fusaka upgrade, just 7 months after the May Pectra upgrade, proved that the EF, despite undergoing significant leadership changes, still has the ability to drive major updates. It also marked Ethereum's formal entry into an accelerated development rhythm of 'two hard forks per year' (See Extended Reading《Ethereum 2026: Interpreting EF's Latest Protocol Roadmap, Officially Entering the Era of 'Engineering Upgrades'?》).

Source: Etherscan

According to the Ethereum Foundation's Soldøgn Interop Recap released on May 2nd, over 100 core Ethereum contributors participated in an interoperability conference in Svalbard, Norway, focusing on the Glamsterdam upgrade. The key goals were to advance the multi-client implementation, testing, and parameter alignment for Glamsterdam. At the end of the conference, developers had formed a directional consensus around a 200 million Gas Limit after Glamsterdam.

This means that if subsequent processes go smoothly, the execution capacity of Ethereum L1 is expected to increase from the current approximately 60 million Gas Limit to a magnitude of 200 million. On a longer time scale, the Ethereum ecosystem's publicly discussable attitude towards Gas Limit has clearly become much more 'radical'. The EIP-9698 proposal even suggests 'increasing tenfold every two years', raising the Gas Limit to 3.6 billion by 2029, which is 50 times the current level.

However, it needs to be emphasized here that increasing the Gas Limit is not simply about making blocks bigger.

If it only roughly increases the computational capacity each block can hold, it might lower fees in the short term, but in the long run, it would burden nodes more heavily, cause state data inflation, and also mean it becomes more difficult for ordinary users to run nodes, ultimately weakening Ethereum's most core decentralized foundation.

Therefore, Glamsterdam's scaling approach is a combination punch:

  • ePBS (enshrined Proposer-Builder Separation) more clearly incorporates the block building and verification process into protocol rules, allowing validators to more securely handle larger blocks;
  • Block-Level Access Lists (BAL) pre-record the accounts and storage locations to be accessed during block execution, thereby supporting parallel disk reads, parallel transaction verification, and parallel state root calculation;
  • And EIP-8037 increases the cost of state creation-related operations to avoid excessive state growth after the Gas Limit is increased.

Ultimately, Ethereum doesn't just want to 'fit more transactions'; it's also thinking about how to not make node operation thresholds increasingly higher while fitting more transactions.

This is also the fundamental difference between Ethereum's scaling roadmap and many high-performance chain narratives. It has always pursued not sacrificing verification cost for superficial throughput, but rather increasing the mainnet's own carrying capacity while trying to maintain ordinary node participation and system verifiability.

II. Keyed Nonces: Turning 'One Queue' into 'Multiple Lanes'

If Gas Limit solves 'how much a block can hold', then Keyed Nonces focuses on another more detailed but crucial question: how should a transaction be queued?

As is well known, in Ethereum, a nonce can be simply understood as the 'sequence number' of an account's transaction. Its role is to prevent the same transaction from being executed repeatedly and to ensure transactions from the same account are processed in order.

This mechanism is easy to understand in ordinary transfer scenarios: it's the first transaction, second transaction, third transaction in sequence, queued one after another.

However, the problem is that when account capabilities become more complex, such as involving private transactions, smart wallets, session keys, batch operations, third-party payment, etc., a single linear nonce can become a bottleneck. Therefore, the core idea of Keyed Nonces, proposed in EIP-8250, is to change from an account having only one nonce queue to being able to have multiple nonce domains.

Specifically, it replaces the single sender nonce in EIP-8141 Frame Transaction with a (nonce_key, nonce_seq) structure, where nonce_key == 0 corresponds to the traditional account nonce, while non-zero keys can choose independent protocol-managed nonce sequences. Transactions under different keys are independent of each other, and replay protection does not interfere between them.

This sounds technical, but it can be understood with a life analogy: In the past, an account was like having only one window at a bank, all business had to queue in the same line; Keyed Nonces is like assigning different businesses to different windows. Transfers, private withdrawals, session authorizations, batch executions can each take their own lane.

This is especially important for privacy protocols because, to avoid directly binding users' on-chain activities to a single public address, privacy protocols might have multiple users initiate transactions through the same shared sender address. However, under a single nonce mechanism, once one user's transaction is packaged, it could cause other users' waiting transactions to become invalid or blocked.

Whereas Keyed Nonces allows each withdrawal to choose its own nonce domain, for example, derived from a privacy nullifier, reducing this queuing conflict from the protocol layer.

Vitalik's own positioning of it is even more ambitious. When introducing EIP-8250, he clearly stated that Keyed Nonces 'not only provides stronger support for protocol-layer privacy solutions, but may also be the first step in Ethereum's new state scaling strategy—by creating storage types specifically optimized for different use cases, achieving ultimate scalability while maintaining protocol decentralization.'

In other words, it can be simply understood as: Gas Limit solves the 'size of the block', while Keyed Nonces explores the 'shape of the state'—what Ethereum needs to carry in the future is not just more transactions, but more types of transactions.

III. How Will This Affect Ordinary Users?

For the Ethereum ecosystem, many protocol upgrades seem far from ordinary users, but ultimately they all land on the wallet experience.

Because the real entry point for users to interact with Ethereum is not EIPs, clients, or developer meetings, but every transfer, authorization, signature, cross-chain, and DApp interaction within the wallet. That is to say, changes at the protocol layer only truly complete the transformation from technical upgrade to user experience upgrade when they are translated into clearer, smoother, and safer operational experiences at the wallet layer.

For example, the now familiar account abstraction is not meant to make users understand more technical terms, but to allow users to more naturally use on-chain accounts in the future. Therefore, in recent years, batch transactions, Gas payment by others, recovery mechanisms, different signature methods, session authorizations, and more flexible security strategies have gradually become basic capabilities in wallets.

Similarly, taking Keyed Nonces as an example, it sounds like a very low-level optimization of the account queuing mechanism. But on the user side, its potential impact is not abstract. Because today, many users may have encountered similar scenarios during on-chain operations: a transaction is not confirmed for a long time, subsequent transactions get stuck; wanting to cancel or speed up a transaction but not understanding the relationship between nonce, Gas, and replacement transactions; especially during parallel multi-step operations, one failed step affects all subsequent processes.

For ordinary users, these problems seem like 'the wallet isn't easy to use' or 'the chain isn't easy to use'. But behind them is actually related to the design of the single linear nonce in the Ethereum account model. The direction represented by Keyed Nonces is to allow accounts to no longer have to execute all operations in order through one queue, but to split into multiple parallel lanes according to different usage scenarios.

In the future, ordinary transfers, DApp authorizations, private transactions, batch transactions, Gas payment by others, and other operations could theoretically have more independent execution spaces, reducing the probability of blocking and conflicts with each other.

This will undoubtedly further expand the design space for smart wallets.

More importantly, in the past, these capabilities often required the complexity to be shared among wallets, DApps, relay services, and users. Users needed to understand authorization scopes, judge whether Gas was reasonable, know exactly what they were signing, and repeatedly confirm in multi-step operations like cross-chain, swapping, staking, and claiming rewards. Any misunderstanding at any step could lead to operational failure and asset loss risk.

What Ethereum is now trying to do is to move part of this complexity forward to the protocol layer, allowing wallets to provide better interaction abstraction for users based on more standardized, more native underlying capabilities.

This is also why Gas Limit, BAL, ePBS, Keyed Nonces, Frame Transactions, native account abstraction, and cross-L2 interoperability, seemingly belonging to different technical modules, are actually all serving the same thing: enabling Ethereum to carry more complex on-chain usage scenarios without sacrificing decentralization and security.

Looking specifically, putting these dynamics together reveals that Ethereum's recent focus is not scattered:

  • Gas Limit increase addresses mainnet execution capacity and fee pressure;
  • BAL, ePBS, EIP-8037 address how to maintain node verifiability and controlled state growth during scaling;
  • Keyed Nonces and Frame Transactions address bottlenecks in account models, privacy protocols, and smart wallets at the protocol layer;
  • Native account abstraction and cross-L2 interoperability further point towards the experience improvements that ordinary users can truly feel.

This also means Ethereum is entering a new stage.

After all, in the past few years, the market paid more attention to L2 scaling, Blob fee reduction, and modular narratives. Users also gradually got used to transferring assets between different L2s and finding lower-cost interaction environments. However, as the mainnet Gas Limit continues to increase, upgrades like Glamsterdam progress, and account abstraction and interoperability solutions continue to evolve, the question Ethereum is answering is no longer just 'how to make transactions cheaper', but 'how to make the on-chain experience more like a whole'.

In this process, the importance of wallets will undoubtedly be further amplified.

Because wallets are not only the entry point for users into Ethereum, but also the interface through which protocol capabilities are truly understood and used by users. In the future, the more complex the underlying upgrades, the more they need to be translated by wallets into clearer signature prompts, more understandable transaction paths, more upfront risk identification, and smoother on-chain interaction experiences.

Let's encourage each other.

Related Questions

QWhat is the core purpose of increasing the Gas Limit to 200 million in the context of the Glamsterdam upgrade, and what are the associated technical measures?

AThe core purpose is to significantly increase the execution capacity of the Ethereum mainnet, potentially lowering transaction fees for users in the short term. However, it is not a simple block size increase. To prevent negative long-term impacts like increased node burden and state data bloat, the Glamsterdam upgrade employs a combination of technical measures including ePBS (enshrined Proposer-Builder Separation) to securely handle larger blocks, Block-Level Access Lists (BAL) to enable parallel processing, and EIP-8037 to control the cost and growth of state creation operations.

QHow does the Keyed Nonces mechanism (EIP-8250) improve upon the traditional single linear nonce system in Ethereum?

AKeyed Nonces replaces the traditional single nonce queue for an account with multiple independent nonce domains, structured as (nonce_key, nonce_seq). A nonce_key of 0 corresponds to the traditional account nonce, while non-zero keys can manage independent nonce sequences. This allows different types of transactions (e.g., regular transfers, privacy transactions, session authorizations, batch operations) to proceed on separate, parallel channels without blocking or interfering with each other, thus solving bottlenecks for complex account scenarios involving privacy protocols, smart wallets, and third-party gas payment.

QAccording to the article, why is the wallet's role becoming increasingly important in Ethereum's evolving landscape?

AThe wallet is the primary interface through which users interact with Ethereum. As protocol-layer upgrades (like Gas Limit increases, Keyed Nonces, native account abstraction) introduce more complex underlying capabilities, the wallet's role is crucial in translating these technical advancements into clear, safe, and smooth user experiences. This includes providing clearer signature prompts, understandable transaction paths, proactive risk identification, and seamless cross-L2 interactions, thereby completing the transformation from technical upgrade to user experience upgrade.

QWhat fundamental distinction does the article highlight between Ethereum's scaling approach and that of other high-performance blockchains?

AThe article emphasizes that Ethereum's scaling approach fundamentally differs from many high-performance chain narratives. Ethereum does not pursue superficial throughput at the cost of verification costs or node decentralization. Instead, it aims to increase the mainnet's carrying capacity while striving to maintain accessibility for ordinary node operators and preserving the system's verifiability and security. This is a core principle behind its combined technical measures like ePBS and BAL alongside Gas Limit increases.

QWhat broader question is Ethereum now attempting to address, moving beyond just making transactions cheaper?

ABeyond simply making transactions cheaper, Ethereum is now focusing on answering the question of 'how to make the on-chain experience more like a cohesive whole.' This involves integrating improvements across execution capacity (Gas Limit), node verifiability (ePBS, BAL), account models (Keyed Nonces), and user experience (native account abstraction, cross-L2 interoperability) to create a more unified, seamless, and capable on-chain ecosystem for diverse and complex use cases.

Related Reads

The Largest IPO in History Ignites Heated Debate: Is SpaceX Worth $1.77 Trillion?

SpaceX's potential IPO is priced at $135 per share, aiming to raise $75 billion and valuing the company at approximately $1.77 trillion, which would make it the largest IPO in history. This valuation has sparked intense debate among investors. Bullish analysts, including major underwriters Goldman Sachs and Morgan Stanley, argue the valuation is justified by SpaceX's long-term potential. They see it not just as a rocket company but as a future leader in space infrastructure, with key growth drivers being Starlink satellite internet, low-cost rocket launches, and future AI-related ventures. They project revenues reaching hundreds of billions to trillions of dollars by 2030-2040. ARK Invest's model suggests a 2030 enterprise value could reach $2.5 trillion. Bearish analysts from independent research firms like Morningstar, PitchBook, and New Constructs contend the IPO price is excessively high, already pricing in unrealistic future growth. Using DCF and sum-of-the-parts models, they estimate fair value between $780 billion and $1.7 trillion, significantly below the IPO target. They highlight risks such as the speculative nature of AI projections, over-dependence on Elon Musk, high growth expectations, and corporate governance concerns. Trefis set a target price of just $79 per share. While both sides acknowledge SpaceX's unique position in commercial space, the core disagreement centers on whether the $135 share price offers a reasonable margin of safety or is overly optimistic. Despite the valuation controversy, reported strong demand for the IPO indicates significant market interest.

marsbit21m ago

The Largest IPO in History Ignites Heated Debate: Is SpaceX Worth $1.77 Trillion?

marsbit21m ago

After the Passage of the GENIUS Act and the CLARITY Act, What Is the Correct Architecture for On-Chain Yield?

The article discusses the evolution of on-chain credit, distinguishing three markets: overcollateralized crypto lending, unsecured lending (largely unsuccessful), and asset-backed credit (ABC). ABC, backed by identifiable real-world collateral with legal recourse, is identified as the fastest-growing category and the only one credibly addressing adverse selection—the core problem in credit where the riskiest borrowers self-select. Current growth in on-chain Real World Assets (RWAs), particularly tokenized private credit funds (e.g., Maple Finance, Centrifuge), is substantial but often merely "wraps" existing fund structures, inheriting their risks rather than solving adverse selection at the protocol level. The regulatory landscape is a key driver, with the US GENIUS Act (prohibiting stablecoin issuers from paying yield) and the proposed CLARITY Act (closing loopholes on indirect yield) set to redefine permissible yield-bearing products. This makes vaults (like ERC-4626) the critical architecture—they become the primary compliant vehicle for delivering yield, functioning as issuance, disclosure, distribution, and recovery mechanisms. The author's thesis is that the correct post-GENIUS/CLARITY architecture involves building ABC solutions where credit assessment, structure, and recovery are encoded directly into the smart contract vault layer, moving beyond mere tokenized fund wrappers to solve adverse selection fundamentally and ensure regulatory compliance.

Foresight News1h ago

After the Passage of the GENIUS Act and the CLARITY Act, What Is the Correct Architecture for On-Chain Yield?

Foresight News1h ago

TechFlow Intelligence Bureau: Anthropic's New Model Fable Sparks Controversy by Restricting Biosafety Research, US CPI Soars to 4.2%, a Three-Year High

**Summary of TechFlow Intelligence Report:** The newsletter covers several key tech and finance developments. In AI, Anthropic's new Fable model faced backlash for secretly limiting biomedical research capabilities and enforcing a 30-day data retention policy, prompting the company to promise more transparent adjustments. In a related story, Anthropic's founder revealed his departure from OpenAI was due to dishonesty from Sam Altman, not safety concerns. Meanwhile, OpenAI is considering significant price cuts to compete with Anthropic, potentially sparking a price war. In crypto/Web3, BlackRock filed a new amendment for a yield-generating Bitcoin ETF, while Bank of America's CEO warned that stablecoin yields could drain trillions from traditional banks. U.S. Senator Cynthia Lummis advocated for the U.S. to officially accumulate Bitcoin reserves. In hardware, Nvidia released the DiffusionGemma-2-6B image model optimized for efficient inference, and AMD promoted its unified memory architecture to challenge Nvidia's dominance. TSMC's CFO hinted at possible price increases due to soaring AI chip demand. A major legal ruling in Germany held Google legally responsible for inaccurate information generated by its AI Overviews feature. Google Chrome also moved to fully block ad-blocker workarounds like uBlock Origin. Macroeconomic headlines included U.S. CPI rising to 4.2% (a 3-year high) and Iran's complete closure of the Strait of Hormuz, raising oil price and inflation fears. South Korean markets saw continued volatility with massive foreign capital outflow. Other notable stories: Microsoft expanded its Copilot AI assistant "Mico" globally; a study found r/wallstreetbets users' stock picks outperformed Wall Street; a fully autonomous drone killed a human soldier for the first time, raising AI ethics concerns; and a Chinese hospital used brain-computer interface technology to help a blind person "see." The overarching theme connects debates over AI boundaries and responsibility (Anthropic's restrictions, Google's liability, lethal autonomous drones) with real-world economic and geopolitical turmoil (inflation, Strait of Hormuz closure, market instability), highlighting the tense interplay between technological advancement and global chaos.

marsbit1h ago

TechFlow Intelligence Bureau: Anthropic's New Model Fable Sparks Controversy by Restricting Biosafety Research, US CPI Soars to 4.2%, a Three-Year High

marsbit1h ago

Alibaba's Yet Another New Business Division: What Signal Does It Send?

Alibaba has established a new "Token Foundry" business unit, merging its Tongyi large model division and Future Life Lab. Led directly by Group CEO Wu Yongming, this marks the company's third significant AI organizational reshuffle in 2026, following the creation of the Alibaba Token Hub (ATH) and a Group Technology Committee. The move signals a strategic shift from consolidating AI resources to accelerating productization and commercialization. The "Token Foundry" name reflects Alibaba's ambition to become a foundational supplier in the AI era, focusing on model development and commercial application. Key teams, including those behind the high-performing HappyHorse video generation model, have been integrated into the new unit. Concurrently, Zhou Jingren, architect of the Qwen model series, has been appointed Group Chief Scientist to lead a new AI Future Research Institute, focusing on long-term technological breakthroughs like Agent capabilities. This restructuring creates a clear four-layer AI architecture within Alibaba: the research institute for frontier exploration, Token Foundry for core models and commercialization, MaaS for platform services, and business units like Qianwen (C端) and Wukong (B端) for end-user applications. The adjustments align with a global trend among tech giants like Google and Microsoft to centralize AI leadership under the CEO and deeply integrate research with business units. The urgency is driven by a narrowing competitive window. Alibaba has announced its AI business is now entering a commercialization phase, with AI-related revenue seeing triple-digit growth for eleven consecutive quarters. The company faces intense competition in the MaaS (Model-as-a-Service) sector from rivals like ByteDance and Tencent. The Token Foundry initiative represents Alibaba's effort to streamline execution and enhance competitiveness in this critical, fast-evolving landscape.

marsbit1h ago

Alibaba's Yet Another New Business Division: What Signal Does It Send?

marsbit1h ago

Trading

Spot
Futures

Hot Articles

Discussions

Welcome to the HTX Community. Here, you can stay informed about the latest platform developments and gain access to professional market insights. Users' opinions on the price of S (S) are presented below.

活动图片