From Gas Limit to 'Keyed Nonces', How to Understand the Next Step in Ethereum Scalability?

marsbitPublicado a 2026-05-13Actualizado a 2026-05-13

Resumen

Ethereum’s scalability efforts are shifting toward a user-centric approach—focusing not only on higher TPS, but on translating technical upgrades into lower costs, smoother operations, and better wallet experiences. Two recent developments highlight this direction: - **Raising the Gas Limit to 200 million**: Following the Fusaka upgrade that increased it to 60 million, a consensus has formed around a potential future increase to 200 million. This would boost Ethereum’s execution capacity, but it is planned alongside other upgrades—such as ePBS, Block-Level Access Lists (BAL), and EIP-8037—to manage state growth and keep node operation viable for average participants. - **Keyed Nonces (EIP-8250)**: This proposal aims to improve how transactions are queued. Instead of a single linear nonce per account, it introduces multiple independent nonce domains. This prevents different types of transactions—such as private payments, session keys, or batch operations—from blocking each other. Vitalik Buterin views this as a foundational step toward better privacy support and more flexible state scalability. Together, these upgrades are part of a broader move to push complexity from wallets, DApps, and relays back into the protocol layer. For everyday users, this means future Ethereum interactions could become less congested, more intuitive, and safer—especially as core improvements in account abstraction, cross-L2 interoperability, and node decentralization continue to progress. Ultima...

Objectively speaking, in recent times, many users' intuitive perception of Ethereum often doesn't come from roadmap updates or developer meetings, but from specific on-chain operations.

For example, in the past couple of years, people have tangibly felt lower Gas fees during transfers and improved experiences with cross-chain interoperability. This is precisely why Ethereum's scaling has never been purely a "performance race" issue—for ordinary users, higher TPS, larger blocks, and more complex underlying architectures are only meaningful when they genuinely translate into lower costs, smoother operations, and a more secure wallet experience.

A series of recent developments in Ethereum happen to be pointing towards its attempt to systematically shift complexities previously borne by wallets, DApps, third-party relayers, and users themselves, forward to the protocol layer.

Among these are Vitalik's involvement with Keyed Nonces, the directional consensus formed around the 200 million Gas Limit floor during the Glamsterdam upgrade, and the continuing threads highlighted in the 2026 roadmap, including native account abstraction, cross-L2 interoperability, and L1 security reinforcement.

One: Gas Limit Increase to 200 Million?

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

As is well known, in the Ethereum network, every transaction (whether a transfer or contract interaction) consumes a certain amount of Gas, and each Ethereum block has a fixed Gas Limit capacity, meaning limited slots: more slots allow more "passengers" to be carried in the same timeframe; more competition for the same seat drives up Gas fees.

Theoretically, increasing the block Gas limit would directly and significantly boost Ethereum mainnet performance. However, in the past, against the backdrop of significant developments like L2, Ethereum has been relatively cautious and restrained in this regard. Most scaling pressure has been intentionally directed toward the L2 track.

Looking at the history of Ethereum's Gas Limit expansion reveals that after first surpassing 10 million from 8 million in September 2019, it took until this year—seven years—for the Gas Limit to increase from 8 million to 60 million. Notably, acceleration truly began in 2025—increasing from 30 million to 36 million in February, to 45 million in July, and then to 60 million after the Fusaka upgrade in December.

It can be said that most of the expansion was crammed into the year 2025. As we've mentioned before, 2025 was also a crucial year in Ethereum's development history. The Fusaka upgrade, just 7 months after the May Pectra upgrade, proved that the Ethereum Foundation (EF), despite major leadership changes, retained the ability to push major updates. It also marked Ethereum's official entry into an accelerated development rhythm of "two hard forks per year" (Extended reading: "Ethereum 2026: Interpreting EF's Latest Protocol Roadmap, Officially Entering the 'Engineering Upgrade' Era?").

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 meeting in Svalbard, Norway, centered on the Glamsterdam upgrade. The key goals were advancing multi-client implementation, testing, and parameter alignment for Glamsterdam. By the meeting's end, developers had reached a directional consensus regarding a 200 million Gas Limit post-Glamsterdam.

This means that if subsequent processes proceed smoothly, Ethereum L1's execution capacity is expected to increase from the current ~60 million Gas Limit to around 200 million. Over a longer timeframe, the Ethereum ecosystem's publicly discussable stance on the Gas Limit has clearly become much more "aggressive." EIP-9698 even proposes "doubling every two years," aiming to raise the Gas Limit to 3.6 billion by 2029, which would be 50 times the current level.

However, it's crucial to emphasize that increasing the Gas Limit isn't simply about making blocks bigger.

If we merely brute-force increased the computational load each block can handle, in the short term it might lower fees, but long-term it would lead to heavier node burdens and state data bloat. This also means it becomes more difficult for ordinary users to run nodes, ultimately undermining Ethereum's core decentralized foundation.

Therefore, Glamsterdam's scaling approach is a combination of measures:

  • ePBS (enshrined Proposer-Builder Separation) more clearly incorporates block building and validation processes into protocol rules, allowing validators to process larger blocks more securely;
  • Block-Level Access Lists (BAL) pre-record the accounts and storage locations to be accessed during block execution, enabling parallel disk reads, parallel transaction validation, and parallel state root calculations;
  • EIP-8037, by increasing the cost of state creation-related operations, aims to prevent excessive state growth after the Gas Limit increase.

Ultimately, Ethereum doesn't just want to "fit more transactions," but is also thinking about how to do so without making node operation increasingly inaccessible.

This is the fundamental distinction between Ethereum's scaling roadmap and many high-performance chain narratives. Ethereum has consistently pursued not sacrificing verification costs for superficial throughput, but rather increasing the mainnet's own carrying capacity while preserving ordinary node participation and system verifiability as much as possible.

Two: Keyed Nonces: Turning 'One Line' into 'Multiple Channels'

If Gas Limit addresses "how much can fit in a block," then Keyed Nonces focuses on another more detailed yet crucial question: how should transactions queue up?

As is well known, in Ethereum, a nonce can be simply understood as the "sequence number" for an account's transactions. 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 simple transfer scenarios: the first transaction, second transaction, third transaction, and so on, queued sequentially.

The problem arises when account capabilities become more complex, involving private transactions, smart wallets, session keys, batch operations, third-party payment sponsors, etc. In these cases, a single linear nonce can become a bottleneck. Therefore, the core idea of EIP-8250's Keyed Nonces is to change from an account having only one nonce queue to having multiple nonce domains.

Specifically, it replaces the single sender nonce from EIP-8141 Frame Transactions with a (nonce_key, nonce_seq) structure. Here, nonce_key == 0 corresponds to the traditional account nonce, while non-zero keys can opt for independent protocol-managed nonce sequences. Transactions under different keys are independent of each other, preventing replay and not affecting one another.

This sounds technical, but it can be understood with a real-life analogy: Before, an account was like a bank with only one window; all business had to queue in the same line. Keyed Nonces is like assigning different services to different windows—transfers, private withdrawals, session authorizations, batch executions can each take their own channel.

This is particularly important for privacy protocols. To avoid directly linking a user's on-chain activity to a single public address, privacy protocols might have multiple users initiate transactions through a shared sender address. However, under a single nonce mechanism, once one user's transaction gets packaged, it could cause other users' pending transactions to become invalid or blocked.

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

Vitalik himself positions it even more grandly. When introducing EIP-8250, he explicitly stated that Keyed Nonces "is not only stronger support for protocol-layer privacy solutions, but could also be the first step in a new Ethereum state scaling strategy—achieving ultimate scalability while maintaining protocol decentralization by creating specialized, optimized storage types for different use cases."

In other words, one could simply understand it as: Gas Limit solves "block size," while Keyed Nonces explores the "shape of state." Ethereum aims to carry not just more transactions, but more *kinds* of transactions in the future.

Three: How Will This Affect Ordinary Users?

For the Ethereum ecosystem, many protocol upgrades may seem distant from ordinary users, but they ultimately manifest in the wallet experience.

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

For instance, the now-familiar concept of account abstraction isn't about making users understand more technical terms, but about enabling users to use on-chain accounts more naturally in the future. That's why in recent years, features like batch transactions, Gas sponsorship, recovery mechanisms, different signature methods, session authorizations, and more flexible security policies have gradually become basic wallet capabilities.

Similarly, taking Keyed Nonces as an example, it sounds like a very low-level optimization of account queuing mechanisms. But from the user's perspective, its potential impact is not abstract. Many users today may have encountered scenarios during on-chain operations where a transaction is pending for too long, blocking subsequent ones; wanting to cancel or speed up a transaction but not understanding the relationship between nonce, Gas, and replacement transactions; especially during multi-step parallel operations, one failed step can disrupt the entire subsequent flow.

For ordinary users, these issues might seem like "the wallet is bad" or "the chain is bad," but in fact, they are related to the design of the single linear nonce in Ethereum's account model. The direction represented by Keyed Nonces is to allow accounts to no longer execute all operations sequentially in one queue, but to split into multiple parallel channels according to different usage scenarios.

In the future, operations like regular transfers, DApp authorizations, privacy transactions, batch transactions, and Gas sponsorship could theoretically have more independent execution spaces, reducing the probability of mutual blocking and conflicts.

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

More importantly, in the past, these capabilities often required wallets, DApps, relay services, and users to share the complexity. Users had to understand authorization scopes, judge if Gas was reasonable, know exactly what they were signing, and repeatedly confirm multi-step operations across bridging, swapping, staking, claiming rewards, etc. Any misunderstanding could lead to operational failure and asset loss risks.

What Ethereum is now attempting to do is shift some of this complexity forward to the protocol layer, allowing wallets to provide better interaction abstractions 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, while seemingly belonging to different technical modules, are all serving the same goal: enabling Ethereum to carry more complex on-chain usage scenarios without sacrificing decentralization and security.

Looking specifically, putting these developments 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 at the protocol layer for account models, privacy protocols, and smart wallets.
  • Native account abstraction and cross-L2 interoperability further point towards tangible experience improvements for ordinary users.

This also signifies that Ethereum is entering a new phase.

After all, in recent years, the market has focused more on L2 scaling, Blob fee reductions, and modular narratives. Users have also gradually become accustomed to moving assets between different L2s and seeking lower-cost interaction environments. However, as mainnet Gas Limits continue to rise, upgrades like Glamsterdam progress, and account abstraction and interoperability solutions evolve, the question Ethereum is now answering is no longer just "how to make transactions cheaper," but "how to make the on-chain experience more like a cohesive whole."

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

Because wallets are not just the entry point for users into Ethereum; they are also the interface through which protocol capabilities are truly understood and utilized by users. In the future, the more complex the underlying upgrades, the more they will 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 work towards this together.

Preguntas relacionadas

QWhat is the significance of potentially increasing Ethereum's Gas Limit to 200 million, and what are the main concerns associated with simply raising it?

AIncreasing the Gas Limit to 200 million would significantly boost Ethereum's mainnet execution capacity and user-perceived performance by allowing more transactions per block. The main concern with simply raising the limit is that it could overly burden node operators by increasing state data bloat, raising hardware requirements, and ultimately threatening Ethereum's core decentralization by making it harder for average users to run nodes.

QHow does the Keyed Nonces proposal (EIP-8250) aim to improve the user experience on Ethereum?

AThe Keyed Nonces proposal aims to improve user experience by moving away from a single, linear transaction queue (nonce) per account. It introduces multiple independent nonce domains or channels. This allows different types of transactions (e.g., regular transfers, privacy withdrawals, session authorizations) to proceed in parallel without blocking each other, reducing congestion, failed transactions, and the complexity users face when managing transaction sequences.

QAccording to the article, what is the fundamental difference between Ethereum's scaling approach and that of many high-performance blockchains?

AThe fundamental difference is that Ethereum's scaling approach does not prioritize sacrificing verification cost and decentralization for superficial throughput. Instead, it focuses on increasing the mainnet's承载能力 (carrying capacity) while striving to maintain low node participation门槛 (barriers), system verifiability, and the network's decentralized foundation.

QWhat role does the wallet play in the context of Ethereum's recent protocol-level upgrades like Keyed Nonces and native account abstraction?

AThe wallet plays a crucial role as the primary user interface and translator of protocol-level upgrades. It absorbs the underlying complexity (e.g., from Keyed Nonces, account abstraction) and presents it to users as clearer, smoother, and safer operational experiences—such as better签名提示 (signature prompts), understandable transaction paths, and streamlined interactions—making the technical upgrades meaningful for end-users.

QWhat broader question is Ethereum attempting to answer with its current suite of upgrades (Gas Limit, ePBS, Keyed Nonces, Account Abstraction), beyond just reducing transaction costs?

ABeyond reducing transaction costs, Ethereum is attempting to answer the broader question of 'how to make the on-chain experience feel more like a cohesive whole.' This involves improving主网 (mainnet) capacity, maintaining node health, enabling more complex use cases (e.g., via Keyed Nonces), and enhancing user experience through native account abstraction and cross-L2 interoperability, ultimately creating a more integrated and user-friendly ecosystem.

Lecturas Relacionadas

GitHub, Transfixed by AI

On the night of February 9th, GitHub suffered a major outage caused by a simple configuration change—reducing a cache refresh interval from 12 to 2 hours—that triggered a cascade of failures. This was not an isolated event, but part of a broader pattern. In early 2026, GitHub experienced at least 8 major incidents, failing to meet its promised 99.9% availability. These outages stemmed from structural issues: explosive growth in load, tight service coupling, and insufficient protection against abnormal traffic. This unprecedented load is driven by AI Agents. In 2025, GitHub handled ~1 billion commits. By 2026, weekly commits reached 275 million, projecting to ~14 billion for the year—a 14x increase. AI tools like Claude Code now contribute 4.5% of all public repository commits, with weekly submissions surging 25x in just three months. AI-generated pull requests jumped from 4 million to 17 million per month in half a year. Unlike human developers, AI Agents work continuously, generating commits at a scale that overwhelms infrastructure designed for human rhythms. The surge also shattered GitHub's business model. Copilot's flat-rate pricing, based on assisting human developers, became unsustainable as Agentic AI sessions consumed resources worth hundreds of dollars for a few dollars in fees. In response, GitHub imposed usage limits and, by June 1st, shifted to a pay-per-use "AI Credits" system. Facing this new reality, GitHub realized a 10x scaling plan was insufficient. It announced a need to *redesign* its architecture for 30x current scale—decoupling services, adding fault isolation, and improving change management to prevent cascading failures. Other platforms like Stripe and AWS are facing similar challenges with AI Agents. Fundamentally, GitHub is transitioning from a human collaboration platform to an "exhaust pipe" for automated AI workflows. Its detailed post-mortem reports aim to maintain trust during this turbulent rebuild. The February outage was not just a technical glitch, but a signal of the software industry's entry into a new, AI-driven era.

marsbitHace 11 min(s)

GitHub, Transfixed by AI

marsbitHace 11 min(s)

Both Suffer Massive Losses Exceeding $90 Billion, Which Is in Greater Peril: Strategy or Bitmine?

Facing massive paper losses exceeding $90 billion each amidst a sharp market downturn, "Digital Asset Treasury" (DAT) giants Strategy and Bitmine find themselves in a precarious position, but with different underlying risks. Strategy, heavily invested in Bitcoin (BTC), faces significant financial strain. Its strategy relies heavily on debt, including convertible notes and preferred stock (STRC) requiring substantial dividend payments. With its cash reserves dwindling and BTC offering no staking yield for cash flow, Strategy's high leverage makes it vulnerable. A continued price decline could force asset sales to meet obligations, potentially creating a negative feedback loop. Its market value has already fallen sharply. In contrast, Bitmine, an Ethereum (ETH) holder, appears on firmer financial ground. It primarily funds its purchases through equity offerings (like ATM programs), avoiding debt pressure. It also generates income by staking a large portion of its ETH holdings. While not immune to market drops and shareholder dilution concerns, Bitmine maintains more flexibility, recently announcing a new preferred share offering to raise further capital. The core divergence lies in their financing: Bitmine uses equity (investor money), while Strategy uses debt (borrowed money). Consequently, Bitmine currently faces less immediate liquidity pressure than Strategy, which must navigate the dual challenge of servicing debt/dividends and a declining core asset (BTC) price.

marsbitHace 18 min(s)

Both Suffer Massive Losses Exceeding $90 Billion, Which Is in Greater Peril: Strategy or Bitmine?

marsbitHace 18 min(s)

Where the AI Bubble Really Is: Which Layer of Players Are Naked

AI Bubble: Where It Really Is and Who's Swimming Naked This analysis dissects the AI industry not as a single entity but as a five-layer pyramid, arguing that bubbles are concentrated in specific tiers, not uniformly distributed. **Key Distinction from the 2000 Dot-com Bubble:** Unlike 2000, where companies had stock prices before revenue, today's leading AI players have massive, contract-backed revenue driving their valuations. Core infrastructure demand is real, with every GPU running at full capacity for paying customers. **The Five-Layer Pyramid & Bubble Assessment:** * **L0 (Fab/Manufacturing) & Top L4 (Leading AI Apps): NO BUBBLE.** Companies like TSMC, NVIDIA, major cloud providers (Microsoft, Google, Meta, Amazon), and top AI labs have real revenues and orders. Supply is tightly constrained by TSMC's disciplined capacity control and physical limits like power/land for data centers, preventing a supply glut. * **L1 (Memory): BATTLEGROUND.** Sky-high HBM margins could signal a new structural cycle or a classic "boom before bust." The oligopoly of three major players may enforce supply discipline, making this a high-stakes bet. * **L2 (Interconnect/Optical Modules): BUBBLE TERRITORY.** Companies like Lumentum and AAOI have seen stock surges (4-10x) far outpacing revenue growth. This hardware segment has lower physical barriers to expansion than fabs, allowing speculation. It mirrors the 2000 bubble's epicenter—optics. * **L3 (Infrastructure/"GPU Landlords"): VULNERABLE.** GPU leasing companies profit from the current compute shortage but own no long-term moat. Their business model relies on a temporary bottleneck that will ease as big tech expands and new tech (e.g., potential space-based data centers) emerges. * **L4 Long Tail (VC-backed Startups): STRONG BUBBLE SIGNALS.** VC funding concentration in AI is twice that of the 1999 peak. Many startups with little revenue use the valuation logic of successful giants to justify their own, creating high risk of a "valuation crunch" when funding dries up. **Critical Risks to Monitor:** 1. **GPU Depreciation & Accounting:** Companies extending the assumed useful life of GPUs artificially boost profits. The true economic life depends on future generational leaps from NVIDIA. 2. **"GPU Credit" & Off-Balance-Sheet Leverage:** Emerging structures where shell companies borrow to buy GPUs and lease them out (with chipmakers sometimes investing) move debt off major balance sheets. This echoes the "vendor financing" of 2000 and the securitization risks of 2008, though currently small-scale. 3. **TSMC Abandoning Caution:** If the primary supply bottleneck (TSMC's conservative capacity planning) breaks, runaway supply could trigger a bust. 4. **Algorithmic Efficiency Breakthrough:** A major leap in software efficiency could drastically reduce the need for raw compute hardware, undermining the investment thesis. **Conclusion:** The AI boom is expensive and has frothy areas, but its core is underpinned by real demand and physical supply constraints. The bubble risk is layered: most present in optical components, GPU leasing, and the long-tail startup ecosystem, while the foundational chip manufacturing and leading application layers remain relatively solid—for now.

marsbitHace 31 min(s)

Where the AI Bubble Really Is: Which Layer of Players Are Naked

marsbitHace 31 min(s)

Trading

Spot
Futuros

Artículos destacados

Cómo comprar GAS

¡Bienvenido a HTX.com! Hemos hecho que comprar GAS (GAS) sea simple y conveniente. Sigue nuestra guía paso a paso para iniciar tu viaje de criptos.Paso 1: crea tu cuenta HTXUtiliza tu correo electrónico o número de teléfono para registrarte y obtener una cuenta gratuita en HTX. Experimenta un proceso de registro sin complicaciones y desbloquea todas las funciones.Obtener mi cuentaPaso 2: ve a Comprar cripto y elige tu método de pagoTarjeta de crédito/débito: usa tu Visa o Mastercard para comprar GAS (GAS) al instante.Saldo: utiliza fondos del saldo de tu cuenta HTX para tradear sin problemas.Terceros: hemos agregado métodos de pago populares como Google Pay y Apple Pay para mejorar la comodidad.P2P: tradear directamente con otros usuarios en HTX.Over-the-Counter (OTC): ofrecemos servicios personalizados y tipos de cambio competitivos para los traders.Paso 3: guarda tu GAS (GAS)Después de comprar tu GAS (GAS), guárdalo en tu cuenta HTX. Alternativamente, puedes enviarlo a otro lugar mediante transferencia blockchain o utilizarlo para tradear otras criptomonedas.Paso 4: tradear GAS (GAS)Tradear fácilmente con GAS (GAS) en HTX's mercado spot. Simplemente accede a tu cuenta, selecciona tu par de trading, ejecuta tus trades y monitorea en tiempo real. Ofrecemos una experiencia fácil de usar tanto para principiantes como para traders experimentados.

308 Vistas totalesPublicado en 2024.12.12Actualizado en 2026.06.02

Cómo comprar GAS

Discusiones

Bienvenido a la comunidad de HTX. Aquí puedes mantenerte informado sobre los últimos desarrollos de la plataforma y acceder a análisis profesionales del mercado. A continuación se presentan las opiniones de los usuarios sobre el precio de GAS (GAS).

活动图片