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

marsbitPubblicato 2026-05-13Pubblicato ultima volta 2026-05-13

Introduzione

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.

Domande pertinenti

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.

Letture associate

Winter for Crypto IPOs: Consensys and Ledger Withdraw Applications

The crypto IPO window is tightening significantly in 2026, marked by prominent companies delaying or pausing their public listing plans. Following a successful 2025 "harvest year" that saw Circle, Bullish, and Gemini go public amidst a bull market, the tide has turned. Consensys, developer of MetaMask, recently postponed its IPO until at least fall 2026. Hardware wallet leader Ledger also suspended its planned US listing due to unfavorable market conditions, with Kraken having previously delayed its own plans. This shift is driven by a cooling market in 2026, characterized by a significant Bitcoin price correction, declining trading volumes, and reduced investor risk appetite for crypto stocks. The poor post-IPO performance of 2025 listings like Circle and Bullish, which saw major share price declines, has heightened investor caution. This contrasts sharply with the current AI sector, where companies like SpaceX, OpenAI, and Anthropic are commanding massive valuations and investor enthusiasm based on narratives of stable, exponential growth. Crypto companies now face pressure to transition from hype-driven models to demonstrating reliable cash flows and robust compliance. While the paused IPO plans may lead to valuation resets and affect ecosystem liquidity, they also accelerate industry consolidation toward stronger, more compliant infrastructure players. A potential recovery in Bitcoin's price and clearer regulations could reopen the IPO window in the latter half of 2026.

marsbit1 h fa

Winter for Crypto IPOs: Consensys and Ledger Withdraw Applications

marsbit1 h fa

ChatGPT Can Manage Your Money for You. Would You Trust It with Your Bank Account?

OpenAI has launched a personal finance tool for ChatGPT, currently in preview for US-based ChatGPT Pro users. This feature allows users to connect their bank and investment accounts (via Plaid, supporting over 12,000 institutions) directly to ChatGPT. It analyzes transactions, generates visual dashboards, and offers conversational financial advice—such as budgeting or planning for major purchases—based on the user's actual data. This move follows OpenAI's acquisitions of fintech startups Roi and Hiro Finance, signaling a strategic push into vertical "super assistant" applications, similar to its earlier health-focused feature. However, the launch has sparked significant privacy concerns. Critics question the safety of granting such sensitive financial access to an AI, especially amid ongoing lawsuits alleging OpenAI shared user chat data with third parties like Meta and Google. OpenAI emphasizes that ChatGPT only reads data (no transaction capabilities), deletes it within 30 days if disconnected, and offers opt-out options for model training. Yet, trust remains a major hurdle. The trend reflects a broader industry shift: AI companies like Anthropic and Perplexity are also targeting high-value, data-rich domains like finance and health. While technically promising, the tool operates in a regulatory gray area—it provides personalized guidance but disclaims formal financial advice or liability. Ultimately, OpenAI's challenge is convincing users to trust an AI with their most private financial information.

marsbit1 h fa

ChatGPT Can Manage Your Money for You. Would You Trust It with Your Bank Account?

marsbit1 h fa

Trading

Spot
Futures

Articoli Popolari

Come comprare GAS

Benvenuto in HTX.com! Abbiamo reso l'acquisto di GAS (GAS) semplice e conveniente. Segui la nostra guida passo passo per intraprendere il tuo viaggio nel mondo delle criptovalute.Step 1: Crea il tuo Account HTXUsa la tua email o numero di telefono per registrarti il tuo account gratuito su HTX. Vivi un'esperienza facile e sblocca tutte le funzionalità,Crea il mio accountStep 2: Vai in Acquista crypto e seleziona il tuo metodo di pagamentoCarta di credito/debito: utilizza la tua Visa o Mastercard per acquistare immediatamente GASGAS.Bilancio: Usa i fondi dal bilancio del tuo account HTX per fare trading senza problemi.Terze parti: abbiamo aggiunto metodi di pagamento molto utilizzati come Google Pay e Apple Pay per maggiore comodità.P2P: Fai trading direttamente con altri utenti HTX.Over-the-Counter (OTC): Offriamo servizi su misura e tassi di cambio competitivi per i trader.Step 3: Conserva GAS (GAS)Dopo aver acquistato GAS (GAS), conserva nel tuo account HTX. In alternativa, puoi inviare tramite trasferimento blockchain o scambiare per altre criptovalute.Step 4: Scambia GAS (GAS)Scambia facilmente GAS (GAS) nel mercato spot di HTX. Accedi al tuo account, seleziona la tua coppia di trading, esegui le tue operazioni e monitora in tempo reale. Offriamo un'esperienza user-friendly sia per chi ha appena iniziato che per i trader più esperti.

225 Totale visualizzazioniPubblicato il 2024.12.12Aggiornato il 2025.03.21

Come comprare GAS

Discussioni

Benvenuto nella Community HTX. Qui puoi rimanere informato sugli ultimi sviluppi della piattaforma e accedere ad approfondimenti esperti sul mercato. Le opinioni degli utenti sul prezzo di GAS GAS sono presentate come di seguito.

活动图片