The Largest Upgrade Since The Merge? How Glamsterdam Will Affect Ethereum and Regular Users?

marsbitОпубліковано о 2026-07-01Востаннє оновлено о 2026-07-01

Анотація

The upcoming Glamsterdam upgrade, scheduled for late 2026, is considered Ethereum's most significant change since The Merge. It focuses on fundamentally restructuring Ethereum's block production, transaction execution, and gas pricing to enable major scalability improvements while preserving decentralization. The upgrade centers on three key innovations: * **Enshrined PBS (ePBS)**: Moves the Proposer-Builder Separation mechanism into the protocol's core, eliminating reliance on external relays. This reorganizes the block pipeline, extending the time window for processing execution payloads, which is crucial for safely increasing block capacity. * **Block-Level Access Lists (BALs)**: Attaches a "map" to each block, declaring in advance which state data its transactions will access. This enables potential parallel transaction processing and faster node synchronization, breaking a key performance bottleneck. * **Gas Repricing**: Introduces a more accurate resource pricing model by separating computation costs from state storage costs. This discourages uncontrolled state growth by making operations that create permanent data (like new accounts) more accurately reflect their long-term network burden. Together, these changes aim to solve the core challenges of increasing Ethereum's throughput (e.g., raising the Gas Limit) without overburdening node hardware or increasing centralization risks. They prepare the infrastructure for higher capacity, targeting a credible post-up...

Author: imToken

Ethereum's next major upgrade has entered its final sprint.

According to the current official Ethereum roadmap, the Glamsterdam upgrade is planned to officially launch on the mainnet in the second half of 2026. As of the end of June, it has also entered the final testing phase on the developer network. Testing is continuously underway on the multi-client development network, focusing on core features such as enshrined PBS, block-level access lists, and Gas repricing. However, the specific activation time has not been finalized.

Meanwhile, on major social media platforms, the most talked-about aspect is undoubtedly the performance narrative of "mainnet reaching 10,000 TPS" after the upgrade. But beyond that, this upgrade fundamentally reconstructs Ethereum's block production pipeline and execution engine. Its depth of changes and wide-reaching impact have led the developer community to widely acclaim it as "the largest-scale upgrade since The Merge."

So, what exactly does this cool-sounding "Glamsterdam" (a combination of the consensus layer upgrade Gloas and the execution layer upgrade Amsterdam) change? How will it address past pain points, and what disruptive changes will it bring to our daily on-chain experience?

I. Why is it the "Largest-Scale Upgrade Since The Merge"?

If previous upgrades like Dencun and Fusaka primarily paved the way for L2 data availability (Blob), then Glamsterdam shifts the focus back to L1, initiating a major overhaul of L1 performance and architecture.

This is also the underlying reality of Ethereum's current "make L1 great again" ethos: how to allow L1 to handle more transactions without simultaneously increasing the cost of running nodes and the risk of network centralization.

However, for ordinary users, Ethereum upgrades are often simplified into one most intuitive question: Will Gas become cheaper? Will throughput increase? To be honest, the upcoming Glamsterdam is difficult to summarize simply with "fee reduction" or "scaling."

Overall, this upgrade involves multiple key aspects of Ethereum's underlying layer, including who builds blocks, how transactions are executed, how nodes read and synchronize state, and how much Gas different on-chain operations should pay. It essentially aims to redesign the fundamental paradigm for how Ethereum produces and processes blocks. According to the currently disclosed technical details, the most noteworthy core changes are mainly in three areas:

  • Enshrined PBS (ePBS): Restructures the relationship between block proposers and builders, eliminating reliance on external relays;
  • Block-Level Access Lists (BALs): Maps out transaction execution paths in advance, paving the way for parallel processing and faster node synchronization;
  • Gas Repricing: Introduces a more precise resource pricing model to control state bloat in high-throughput environments;

First, to understand enshrined PBS, one needs to know that blocks on Ethereum are not necessarily submitted by the Proposer themselves. Especially under the current MEV-Boost architecture, most Proposers outsource the work of collecting transactions, ordering them, and seeking MEV opportunities to professional Block Builders. The Proposer is primarily responsible for choosing the highest-bidding candidate block from several options and submitting it to the network.

This division of labor, where "Builder assembles, Proposer submits," is PBS (Proposer-Builder Separation).

The problem, however, is that this mechanism is not fully encoded into Ethereum's underlying protocol—Proposers and Builders must rely on off-protocol third-party software and MEV-Boost Relay services to complete block bidding, content delivery, and payment.

This means Relays must ensure Builders ultimately disclose the full block while also preventing Proposers from "stealing" block content in advance and refusing payment. Therefore, Relays act as fragile and centralized "trusted middlemen."

The ePBS (Enshrined PBS) proposed by EIP-7732 aims to solve this pain point by incorporating this博弈关系 directly into Ethereum's consensus protocol itself. It eliminates third-party relays, making Builders protocol-native participants. Builders first submit a block commitment and bid, the protocol automatically locks the corresponding payment, and a dedicated "Payload Timeliness Committee" judges whether the Builder timely disclosed the execution payload.

This decouples part of the processing of the consensus block and the execution payload, extending the propagation and processing window for the execution payload from about 2 seconds to approximately 9 seconds. These few extra seconds, while seemingly small, are crucial for Ethereum scaling—it means nodes have more time to receive and process larger blocks and more Blob data, thereby creating room for further increasing the Gas Limit.

Secondly, another core breakthrough of Glamsterdam on the execution layer is the Block-Level Access Lists (BALs) proposed by EIP-7928.

As is well known, currently, Ethereum nodes cannot directly learn from a block which accounts each transaction will read, which contract storage it will access, or which states it will modify before receiving it. Instead, they typically discover these data dependencies gradually during transaction execution.

This is like entering a large warehouse to pick goods without a complete inventory list. Workers must search and process simultaneously, so to avoid two people modifying the same batch of inventory, much of the work must be done strictly in a fixed order (single-threaded serial execution).

Block-Level Access Lists (BALs) act as a complete "state access map" attached to each block. They declare in the block header in advance which addresses and Storage Slots the set of transactions within that block will touch, as well as the state results after transaction execution. With this map, nodes can judge at a glance which transactions will access the same data and which are independent before execution:

For the independent parts, nodes can pre-fetch relevant state data from the hard drive and process transaction validation and state root calculation in parallel for some transactions, instead of cramming all work into a strictly serial queue. Additionally, since BALs also record state changes after transaction completion, some nodes can use these results for state reconstruction during network synchronization and catch-up, without having to execute every single transaction in the block from scratch in all scenarios (the author's personal understanding leans towards a sharding-like concept), potentially moving Ethereum towards a more parallel execution blockchain.

Therefore, in the long run, this is also a key underlying element for Ethereum's mainnet to break through its performance ceiling.

Finally, there is Gas repricing, which fundamentally recalibrates the Gas pricing for various on-chain operations through economic levers.

The reason is that the current Gas cost on Ethereum does not fully match the actual resource consumption borne by nodes. For example, a purely complex computation typically doesn't leave a long-term burden on nodes after execution. However, creating a new account, deploying a smart contract, or writing to a new storage slot generates data that needs to be permanently stored by all full nodes globally.

In the past, the fees for these state-creating actions did not fully reflect the permanent storage costs they incur (state explosion). If Ethereum maintained its original pricing after increasing the Gas Limit, more block space could rapidly transform into uncontrollable state data, eventually overwhelming node hardware.

EIP-8037, which has been confirmed for inclusion in Glamsterdam, aims to completely restructure these rules. This includes separating computation and state accounting, recalculating costs based on the volume of new state data added, distinguishing between general computation Gas and state Gas. It also controls state explosion, meaning operations that create many new accounts, deploy large redundant contracts, or frequently write new state may see increased costs. Conversely, applications primarily consuming immediate computational resources without persistently increasing state will have a more attractive fee structure.

Ultimately, the Gas reform in Glamsterdam cannot be simplistically understood as a "comprehensive fee reduction." Instead, it clarifies how much immediate computational resource a transaction consumes and what long-term storage burden it leaves on the network, then makes different operations pay in a way closer to their true physical cost.

Overall, these three parts, while seemingly independent, jointly point toward the same ultimate goal: to renovate the underlying core infrastructure in advance for Ethereum's mainnet to further and significantly increase Gas Limit and processing capacity.

II. Why Not Just Make Blocks Bigger?

Many might wonder: since it's slow and expensive, why not just increase the Gas Limit and double the block capacity directly?

This is a frequently asked question. In theory, the most direct way to increase mainnet capacity is indeed to raise the maximum Gas allowed per block. A higher Gas Limit means more transactions and computations can fit into one block.

However, the Gas Limit is not a number that can be increased indefinitely. Blindly enlarging blocks triggers a domino effect: nodes need to receive more data, execute more transactions, and calculate new state within the same timeframe. If processing speed can't keep up, nodes with weaker configurations are more likely to fall behind, block propagation and validation may experience delays, ultimately increasing the risk of network forks and centralization.

Meanwhile, more transactions also mean more accounts, contracts, and storage data permanently written into Ethereum's database. This data doesn't automatically disappear after transactions end but accumulates in Ethereum's state database, leading to faster state bloat.

Therefore, Ethereum scaling is not a simple math problem; it needs to solve three problems simultaneously:

  • First, how to give nodes more time to propagate and process larger blocks;
  • Second, how to reduce performance bottlenecks caused by sequential transaction execution;
  • Finally, how to prevent more block space from rapidly transforming into uncontrollable state bloat;

This is the core logic of Glamsterdam. Instead of blindly scaling first and forcing nodes to bear the brunt, it first restructures the methods of block production, transaction execution, and resource pricing, clearing the underlying pipeline, then naturally opens the door for increasing mainnet capacity.

Specifically, ePBS reorganizes the block processing flow within a slot, giving nodes more time to propagate and validate larger blocks; BALs improve client efficiency in reading, executing, and synchronizing by explicitly providing state access relationships; Gas repricing is responsible for limiting unsustainable state growth.

During the collaborative Glamsterdam test in April 2026, core developers conducted focused stress tests around multi-client implementations and explicitly set the technical goal of a credible capacity lower bound of 200 million Gas after the upgrade. Supporting this target is the combined underlying foundation provided by ePBS, BALs, and state Gas repricing.

Of course, 200 million Gas is closer to the system's carrying capacity post-upgrade and the direction for future evolution. It does not mean the mainnet will immediately jump its Gas Limit to this level on the day Glamsterdam activates.

What's truly important is that Ethereum is shifting from past "cautious, tentative scaling" toward "preparing in advance for more substantial mainnet scaling through underlying structural reconstruction."

III. How Will Ordinary Users and the Ethereum Ecosystem Be Affected?

From an ordinary user's perspective, the most relevant question regarding the Glamsterdam upgrade is still whether transaction fees will decrease.

Overall, the answer leans more towards likely decreasing and becoming more stable, rather than all transactions instantly becoming cheaper.

Since ePBS and block-level access lists create conditions for a higher Gas Limit, it's foreseeable that the number of transactions each block can accommodate will definitely increase. If on-chain demand remains constant, the increased supply of block space naturally helps alleviate congestion and reduces the probability of sudden Base Fee spikes.

However, for individual transactions, the impact may vary depending on the operation. For example, simple ETH transfers may benefit from base Gas optimizations; and since BALs provide state paths in advance, wallet accuracy in estimating Gas fees will significantly improve. The糟糕体验 of past failed transactions due to inaccurate wallet Gas estimates during market volatility—yet still paying fees—will become history.

On the other hand, operations like deploying contracts, batch-creating accounts, or writing large amounts of new state may see increased costs due to state repricing. Therefore, Glamsterdam is more likely to result in decreased costs for simple transactions, more stable fees during congested periods, while state-intensive applications start paying a more accurate price for the long-term network resources they occupy.

For users primarily using L2s, this upgrade is not irrelevant. By extending the data propagation window for execution payloads from about 2 seconds to about 9 seconds, ePBS can not only support larger mainnet blocks but also leaves more room for Ethereum to handle more Blob data. After Blob capacity continues to expand, Rollups will have more space to submit transaction data, which in the long run helps stabilize L2 data costs.

Furthermore, for wallets, exchanges, and cross-chain bridges, a more user-perceivable change might come from EIP-7708. Currently, ERC-20 token transfers typically generate standardized Transfer logs. However, some native ETH transfers between smart contracts do not leave equally clear event logs. Wallets and trading platforms often need to rely on additional internal transaction tracing tools to identify these ETH flows.

EIP-7708 requires non-zero ETH transfers and ETH destruction operations to generate standard logs, allowing wallets, exchanges, and cross-chain bridges to more reliably identify deposits, withdrawals, and internal ETH movements within contracts. In the future, users' ETH asset records may become more complete, and some internal transfers that previously required complex transaction tracing to display might be more easily recognized directly by wallets.

For node operators and stakers, the impact is more direct. Glamsterdam changes both execution and consensus layer block processing methods, so nodes and validators need to upgrade to client versions supporting Glamsterdam before mainnet activation. Ordinary token holders do not need to migrate ETH or perform any so-called "asset upgrades" or "token swaps."

Looking further ahead, what Glamsterdam truly affects is how Ethereum rebalances scaling and decentralization. After all, once block capacity increases, if the hardware cost required to run a node rises significantly in tandem, while mainnet throughput increases, the network may become increasingly reliant on large institutions.

The combination of ePBS, block-level access lists, and state Gas repricing attempts to form another scaling path: not simply demanding nodes handle more work in the same timeframe, but reorganizing the block production flow, providing transaction dependency information in advance, and charging different resources according to their actual burden.

This is also the most fundamental difference between Glamsterdam and a simple Gas Limit increase. It does not attempt to solve all of Ethereum's problems with a single EIP but simultaneously reforms three interrelated mechanisms: block production, transaction execution, and state growth.

In Conclusion

In the long term, what Glamsterdam profoundly influences is the narrative direction of how Ethereum rebalances between "high-performance scaling" and "absolute decentralization."

This is also the初心 or inertia of Ethereum that we are becoming increasingly familiar with—facing the步步紧逼 of high-performance monolithic blockchains, it chooses not to take the简单粗暴 route of raising hardware requirements. Instead, it selects a path that strives to maintain its decentralized底色, offering greater underlying resilience. Just like this time, through the combination拳 of rewriting the block pipeline (ePBS), explicitly providing transaction dependencies in advance (BALs), and making different resources pay precisely according to their physical burden (Gas repricing), it is still to carve out greater mainnet capacity while ensuring ordinary people can run nodes and participate in validation.

From this perspective, every划算 Gas fee we pay in the future, the more accurate and clear internal ETH statements in our wallets, and the broader space for fee reductions on L2s may all deeply benefit from the foundation that Glamsterdam lays for Ethereum in the second half of 2026.

Трендові криптовалюти

Пов'язані питання

QWhat is Glamsterdam and why is it considered the largest Ethereum upgrade since The Merge?

AGlamsterdam is a major upcoming upgrade for Ethereum, combining the consensus layer upgrade 'Gloss' and the execution layer upgrade 'Amsterdam'. It is considered the largest since The Merge because it fundamentally restructures Ethereum's block production pipeline and execution engine. It introduces core changes like enshrined PBS (ePBS), block-level access lists (BALs), and gas repricing, which together aim to significantly enhance L1 performance and capacity while managing decentralization risks.

QHow does Enshrined PBS (ePBS) aim to improve Ethereum's scalability?

AEnshrined PBS (ePBS, introduced via EIP-7732) integrates the proposer-builder separation directly into Ethereum's consensus protocol, removing the need for external, centralized relay services. It decouples the consensus block from the execution payload, extending the processing window for execution payloads from about 2 seconds to roughly 9 seconds. This gives nodes more time to receive and process larger blocks and more blob data, which is a critical step for safely increasing the gas limit and overall network capacity.

QWhat problem do Block-Level Access Lists (BALs) solve, and what benefits do they provide?

ABlock-Level Access Lists (BALs, proposed in EIP-7928) solve the problem of nodes not knowing which accounts or storage slots a transaction will access until it is executed. BALs provide a pre-declared 'map' of all state accesses and results for the transactions in a block. This allows nodes to identify non-conflicting transactions beforehand, enabling some parallel processing and faster state synchronization. In the long term, this is a foundational step towards breaking Ethereum's performance ceiling by moving towards more parallel execution.

QWill the Glamsterdam upgrade make all Ethereum transactions cheaper for users?

ANot necessarily. While the upgrade's components (ePBS and BALs) create conditions for a higher gas limit, which could reduce congestion and base fees during peak times, the gas repricing (EIP-8037) introduces a more accurate cost model. Simple transfers may become cheaper, but operations that create significant new permanent state data (like deploying large contracts) will likely see increased costs. The overall effect is expected to be more stable fees and a pricing structure that better reflects the real resource cost of different transactions.

QWhat is the primary long-term goal of the Glamsterdam upgrade?

AThe primary long-term goal of Glamsterdam is to enable a substantial increase in Ethereum's mainnet capacity and throughput (e.g., targeting a credible capacity of 200M gas) without compromising its decentralization. It achieves this not by simply raising the gas limit, but by simultaneously redesigning core mechanisms: ePBS restructures block production timing, BALs optimizes transaction execution, and gas repricing controls unsustainable state growth. This combined approach aims to find a new balance between high performance and maintaining a decentralized network where individuals can still run nodes.

Пов'язані матеріали

Circle CEO Responds to the OUSD Challenge: Stablecoin is a Winner-Takes-All Business, and We Won't Slow Down

In response to questions about the OUSD stablecoin initiative, Circle CEO Jeremy Allaire argues that the stablecoin market is a "winner-take-most" platform business driven by powerful network effects, and Circle has no plans to slow down. He outlines three key drivers behind USDC's dominant position: 1. **Protocol/Software Layer Network Effects**: The value of a stablecoin network grows as more developers and services integrate it, creating compounding utility and user preference. Circle has spent nearly a decade building this ecosystem with USDC, now accelerated by mainstream adoption and enhanced by software stacks like CCTP and Gateway for interoperability. 2. **Liquidity Network Effects**: Liquidity begets more liquidity. USDC has achieved top-tier global liquidity—ranking among the top three digital assets alongside BTC and USDT—through nearly a decade of building deep primary and secondary market access across regions and venues. 3. **Regulatory and Policy Integration**: Establishing a global stablecoin requires deep regulatory engagement, licensing, and compliance across key markets—a significant, long-term investment where Circle is a leader. Allaire cites Artemis data showing USDC facilitated 80% of all dollar stablecoin on-chain transaction volume in Q1 2026, with USDT at 20% and all others negligible. He addresses OUSD's purported advantages: "free" minting/burning is often not sustainable in practice; redistributing all revenue can starve essential infrastructure investment; and large consortium models historically struggle with inefficiency and slow execution, unlike focused strategic partnerships. He reaffirms Circle's strong ongoing partnership with Coinbase on USDC and notes Circle collaborates with dozens of other stablecoin issuers through its expanding platform (Arc, CCTP, CPN, etc.). While welcoming OUSD to the ecosystem, Allaire asserts that Circle's vast, trusted network and continued investment make USDC the foundational digital dollar infrastructure for the world.

链捕手1 год тому

Circle CEO Responds to the OUSD Challenge: Stablecoin is a Winner-Takes-All Business, and We Won't Slow Down

链捕手1 год тому

Q2 Crypto Market Review: Did Bitcoin Rise for 'Nothing'? Did Money Flow to AI and On-Chain?

Q2 2026 Crypto Market Recap: Bitcoin's Gains Erased Amid Shift to AI and On-Chain Activity The second quarter of 2026 saw a significant reversal for the cryptocurrency market. Bitcoin gave back all its April gains, ending Q2 down approximately 11%, while major stock indices posted strong gains. This divergence was driven by a hawkish shift in Fed rate expectations, capital rotation into AI stocks, and weakening liquidity channels into crypto. Key demand pillars deteriorated simultaneously. Spot Bitcoin ETFs recorded net outflows of $4.08 billion for the quarter, with outflows dominating June. Crypto treasury entity Strategy's bitcoin accumulation slowed markedly, and the total stablecoin market cap contracted by ~$4.2 billion. This created a tighter liquidity environment. Exchange data reflected the downturn. Spot trading volumes fell 28% quarter-over-quarter. The market underwent significant deleveraging, with $8.35 billion in long liquidations for BTC and ETH, primarily in late May/early June. Open interest and order book liquidity also declined. Despite the bearish price action, structural developments point to an expanding on-chain ecosystem. These include the rise of tokenized stocks with full legal rights, the growth of RWA (real-world asset) perpetual contracts for trading stocks and commodities 24/7, and the use of crypto markets for price discovery ahead of major events like the SpaceX IPO. On-chain vaults are also emerging as a core layer for institutional capital allocation.

Foresight News1 год тому

Q2 Crypto Market Review: Did Bitcoin Rise for 'Nothing'? Did Money Flow to AI and On-Chain?

Foresight News1 год тому

Xing Bo Strikes Again: Last Time 'Critiquing' World Models, This Time It's Agents' Turn

Xing Bo, President of MBZUAI and professor at Carnegie Mellon University, along with co-authors Mingkai Deng and Jinyu Hou, has released a new paper, "Critique of Agent Model," critiquing the current state of artificial intelligence agents. The paper draws a crucial distinction between "agentic" systems, which rely on external toolchains, prompts, and workflows, and truly "agentive" systems capable of genuine autonomy driven by internal decision-making structures. To illustrate this, it references a real-world incident where an AI programming assistant, following an external prompt but lacking internalized judgment, caused a catastrophic data deletion. The authors propose a detailed analysis and a new framework, "Goal-Identity-Configurator" (GIC), for building truly autonomous agents. This framework systematically addresses five key dimensions where current "Agent" designs fall short: 1. **Goal:** Moving from step-by-step human instruction to a system capable of autonomously decomposing a single long-term goal and adapting sub-goals based on new information. 2. **Identity:** Evolving self-assessment updated by experience, rather than a static description in a system prompt. 3. **Decision Making:** Replacing textual Chain-of-Thought reasoning with "simulative reasoning" that uses a dedicated world model to predict real-world consequences before selecting actions. 4. **Cognitive Control:** Introducing a separate "System III" metacognitive module that dynamically decides when to deliberate, stick to a plan, or act quickly. 5. **Learning:** Enabling "continual autonomous learning," where the agent itself decides when to act, practice in simulation, or update its world model and self-perception. The GIC architecture integrates six components—a belief encoder, goal decomposer, identity evolver, configurator (System III), simulation-based planner (System II), and executor (System I)—to embody these principles. The paper argues that a growth path akin to pilot training (ground theory, simulator practice, real deployment) should be underpinned by a unified cognitive architecture, not separate workflows. On safety, the authors contend that the GIC framework's modular, explicit design enhances inspectability, allowing problematic behavior to be traced to specific components (e.g., flawed goal or poorly trained module) rather than emerging opaquely. However, they acknowledge that ultimate safety depends on correctly training these modules in the first place. In conclusion, the paper challenges the loose application of the term "Agent," asserting that task completion alone does not equal true autonomy. True autonomy requires goals, identity, and judgment to be genuinely internalized within the agent's architecture, not merely enforced by external scripts.

marsbit2 год тому

Xing Bo Strikes Again: Last Time 'Critiquing' World Models, This Time It's Agents' Turn

marsbit2 год тому

Торгівля

Спот

Популярні статті

Що таке ETH 2.0

ETH 2.0: Нова ера для Ethereum Вступ ETH 2.0, широко відомий як Ethereum 2.0, є величезним оновленням для блокчейну Ethereum. Ця трансформація не є лише косметичною зміною; вона має на меті фундаментально покращити масштабованість, безпеку та сталий розвиток мережі. З переходом від енергомісткого механізму консенсусу Proof of Work (PoW) до більш ефективного Proof of Stake (PoS), ETH 2.0 обіцяє трансформаційний підхід до екосистеми блокчейнів. Що таке ETH 2.0? ETH 2.0 — це збірка особливих, взаємопов’язаних оновлень, спрямованих на оптимізацію можливостей та продуктивності Ethereum. Це перетворення розроблене для вирішення критичних викликів, з якими стикалося існуюче механізм Ethereum, зокрема щодо швидкості транзакцій та заторів у мережі. Мета ETH 2.0 Основні цілі ETH 2.0 зосереджені на покращенні трьох ключових аспектів: Масштабованість: Мета — значно підвищити кількість транзакцій, які мережа може обробити за секунду; ETH 2.0 прагне вийти за межі поточного обмеження приблизно в 15 транзакцій на секунду, потенційно досягнувши тисяч. Безпека: Підвищені заходи безпеки є невід’ємною частиною ETH 2.0, зокрема через покращену стійкість до кібератак і збереження децентралізованої етики Ethereum. Сталий розвиток: Новий механізм PoS розроблений не тільки для підвищення ефективності, але й для різкого зменшення споживання енергії, що узгоджує операційну структуру Ethereum з екологічними міркуваннями. Хто є творцем ETH 2.0? Створення ETH 2.0 можна віднести до Ethereum Foundation. Ця неприбуткова організація, яка відіграє важливу роль у підтримці розвитку Ethereum, очолюється відомим співавтором Віталіком Бутеріним. Його бачення більш масштабованого та стійкого Ethereum стало рушійною силою цього оновлення, залучаючи внески зі всього світу від розробників і ентузіастів, які прагнуть покращити протокол. Хто є інвесторами ETH 2.0? Хоча подробиці про інвесторів ETH 2.0 не були оприлюднені, відомо, що Ethereum Foundation отримує підтримку від різних організацій та осіб у сфері блокчейну та технологій. Ці партнери включають венчурні капітальні компанії, технологічні компанії та філантропічні організації, які мають спільний інтерес у підтримці розвитку децентралізованих технологій та інфраструктури блокчейну. Як працює ETH 2.0? ETH 2.0 відзначається введенням низки ключових функцій, які відрізняють його від попередника. Proof of Stake (PoS) Перехід до механізму консенсусу PoS є одним із знакових змін ETH 2.0. На відміну від PoW, який покладається на енергомісткий видобуток для перевірки транзакцій, PoS дозволяє користувачам підтверджувати транзакції та створювати нові блоки відповідно до кількості ETH, яку вони ставлять у мережі. Це призводить до підвищення енергоефективності, зменшуючи споживання приблизно на 99,95%, завдяки чому Ethereum 2.0 стає значно більш екологічною альтернативою. Шардові ланцюги Шардові ланцюги є ще одним ключовим нововведенням ETH 2.0. Ці менші ланцюги працюють паралельно з основним ланцюгом Ethereum, що дозволяє обробляти кілька транзакцій одночасно. Це підходи покращує загальну ємність мережі, усуваючи проблеми масштабованості, які переслідували Ethereum. Beacon Chain У центрі ETH 2.0 знаходиться Beacon Chain, яка координує мережу і управляє протоколом PoS. Вона виконує роль організатора: контролює валідаторів, забезпечує з’єднання шард з мережею і моніторить загальний стан екосистеми блокчейнів. Хронологія ETH 2.0 Шлях ETH 2.0 характеризується кількома ключовими етапами, які відображають еволюцію цього значного оновлення: Грудень 2020: Запуск Beacon Chain ознаменував введення PoS, проклавши шлях до міграції на ETH 2.0. Вересень 2022: Завершення "Злиття" є знаковим моментом, коли мережа Ethereum успішно перейшла з PoW на PoS, відкриваючи нову еру для Ethereum. 2023: Очікуване розгортання шардових ланцюгів має на меті подальше покращення масштабованості мережі Ethereum, закріплюючи ETH 2.0 як надійну платформу для децентралізованих додатків і послуг. Ключові особливості та переваги Покращена масштабованість Однією з найзначніших переваг ETH 2.0 є його покращена масштабованість. Поєднання PoS та шардових ланцюгів дозволяє мережі розширити свою ємність, що дозволяє їй обробляти набагато більший обсяг транзакцій в порівнянні з класичною системою. Енергоефективність Запровадження PoS є величезним кроком до енергоефективності в технології блокчейн. Значно зменшуючи споживання енергії, ETH 2.0 не тільки знижує операційні витрати, але також ближче узгоджується з глобальними цілями сталого розвитку. Підвищена безпека Оновлені механізми ETH 2.0 сприяють підвищенню безпеки по всій мережі. Впровадження PoS, поряд з інноваційними контрольними заходами, встановленими через шардові ланцюги та Beacon Chain, забезпечує вищий рівень захисту від потенційних загроз. Зниження витрат для користувачів З покращенням масштабованості вплив на витрати на транзакції також стане очевидним. Збільшена ємність і зменшені затори, як очікується, призведуть до зниження зборів для користувачів, що зробить Ethereum більш доступним для повсякденних транзакцій. Висновок ETH 2.0 є значною еволюцією в екосистемі блокчейну Ethereum. Оскільки він вирішує важливі питання, такі як масштабованість, споживання енергії, ефективність транзакцій і загальна безпека, важливість цього оновлення не можна недооцінювати. Перехід до Proof of Stake, введення шардових ланцюгів і фундаментальна робота Beacon Chain свідчать про майбутнє, в якому Ethereum може задовольнити зростаючі вимоги децентралізованого ринку. В індустрії, що рухається вперед завдяки інноваціям та прогресу, ETH 2.0 є підтвердженням можливостей технології блокчейн у прокладенні шляху до більш сталого та ефективного цифрового економіки.

181 переглядів усьогоОпубліковано 2024.04.04Оновлено 2024.12.03

Що таке ETH 2.0

Що таке ETH 3.0

ETH3.0 та $eth 3.0: Глибоке дослідження майбутнього Ethereum Вступ У швидко змінюваному світі криптовалют та технології блокчейн, ETH3.0, часто позначуваний як $eth 3.0, став темою значного інтересу та спекуляцій. Цей термін охоплює два основні концепти, які потребують уточнення: Ethereum 3.0: Це потенційне майбутнє оновлення, яке має на меті покращення можливостей існуючого блокчейну Ethereum, зокрема, фокусуючись на поліпшенні масштабованості та продуктивності. ETH3.0 Мем Токен: Цей окремий криптовалютний проект прагне використовувати блокчейн Ethereum для створення екосистеми, орієнтованої на меми, сприяючи залученню до криптовалютної громади. Розуміння цих аспектів ETH3.0 є важливим не лише для криптоентузіастів, але й для тих, хто спостерігає за широкими технологічними тенденціями у цифровому просторі. Що таке ETH3.0? Ethereum 3.0 Ethereum 3.0 пропонується як оновлення вже існуючої мережі Ethereum, яка стала основою багатьох децентралізованих додатків (dApps) та смарт-контрактів з моменту свого виникнення. Передбачувані удосконалення зосереджені в основному на масштабованості — інтегруючи передові технології, такі як шардінг та нульові знання (zk-докази). Ці технологічні нововведення націлені на забезпечення безпрецедентної кількості транзакцій на секунду (TPS), потенційно досягаючи мільйонів, тим самим вирішуючи одну з найзначніших обмежень, з якими стикається сучасна технологія блокчейн. Покращення є не лише технічним, а й стратегічним; воно спрямоване на підготовку мережі Ethereum до широкого прийняття та корисності в майбутньому, позначеному збільшеним попитом на децентралізовані рішення. ETH3.0 Мем Токен На відміну від Ethereum 3.0, ETH3.0 Мем Токен пропонує легшу та грайливішу домену, поєднуючи культуру інтернет-мемів із динамікою криптовалют. Цей проект дозволяє користувачам купувати, продавати та обмінювати меми на блокчейні Ethereum, надаючи платформу, яка сприяє залученню громади через креативність та спільні інтереси. ETH3.0 Мем Токен має на меті продемонструвати, як технологія блокчейн може перетинатися з цифровою культурою, створюючи випадки використання, які є водночас розважальними та фінансово життєздатними. Хто є творцем ETH3.0? Ethereum 3.0 Ініціатива щодо Ethereum 3.0 переважно підтримується консорціумом розробників та дослідників у межах громади Ethereum, зокрема, до складу якого входить Джастін Дрейк. Відомий своїми думками та внеском у розвиток Ethereum, Дрейк є помітною особистістю в обговореннях щодо переходу Ethereum на новий рівень консенсусу, який називається «Beam Chain». Цей колабораційний підхід до розробки свідчить про те, що Ethereum 3.0 не є продуктом єдиного творця, а скоріше втіленням колективної винахідливості, спрямованої на просування технології блокчейн. ETH3.0 Мем Токен Деталі про творця ETH3.0 Мем Токена наразі не відстежуються. Природа мем-токенів часто призводить до більш децентралізованої та громартової структури, що може пояснити відсутність специфічної атрибуції. Це узгоджується з етикою ширшої крипто-спільноти, де інновації часто виникають з колективних, а не індивідуальних зусиль. Хто є інвесторами ETH3.0? Ethereum 3.0 Підтримка Ethereum 3.0 переважно надходить від Фонду Ethereum поряд з ентузіастичною спільнотою розробників та інвесторів. Це базове співробітництво надає значний градус легітимності та підвищує ймовірність успішної реалізації, оскільки воно використовує довіру та авторитет, накопичені за роки роботи мережі. У швидко змінюваному кліматі криптовалют підтримка громади займає важливу роль у розвитку та прийнятті, позиціонуючи Ethereum 3.0 як серйозного конкурента для майбутніх блокчейн-інновацій. ETH3.0 Мем Токен Хоча наразі доступні джерела не надають явної інформації щодо інвестиційних фондів або організацій, що підтримують ETH3.0 Мем Токен, це свідчить про типову модель фінансування для мем-токенів, яка часто спирається на підтримку знизу та залучення громади. Інвестори в такі проекти зазвичай складаються з осіб, які мотивовані потенціалом інновацій, що керуються спільнотою, та духом співпраці, притаманним крипто-спільноті. Як працює ETH3.0? Ethereum 3.0 Відмінні риси Ethereum 3.0 полягають у його запропонованій реалізації технології шардінгу та zk-proof. Шардінг — це метод розподілу блокчейну на менші, керовані частини чи «шарди», які можуть обробляти транзакції одночасно, а не послідовно. Це децентралізоване оброблення допомагає запобігти заторам та забезпечити оперативність мережі навіть під великим навантаженням. Технологія нульових доказів (zk-proof) надає ще один рівень складності, дозволяючи валідацію транзакцій без розкриття підпорядкованих даних. Цей аспект не лише підвищує конфіденційність, а й збільшує загальну ефективність мережі. Також обговорюється включення нульової Ефірної віртуальної машини (zkEVM) в це оновлення, що ще більше підвищить можливості та корисність мережі. ETH3.0 Мем Токен ETH3.0 Мем Токен виділяється завдяки використанню популярності культури мемів. Він створює ринок, на якому користувачі можуть брати участь у торгівлі мемами не лише для розваги, але й для потенційного економічного вигоди. Інтегруючи функції, такі як стейкінг, забезпечення ліквідності та механізми управління, проект сприяє створенню середовища, яке заохочує взаємодію та участь громади. Пропонуючи унікальне поєднання розваг та економічних можливостей, ETH3.0 Мем Токен прагне залучити різну аудиторію, яка охоплює від криптоентузіастів до casual-консумерів мемів. Хронологія ETH3.0 Ethereum 3.0 11 листопада 2024: Джастін Дрейк натякає на майбутнє оновлення ETH 3.0, яке зосереджене на поліпшеннях масштабованості. Це оголошення означає початок формальних обговорень щодо майбутньої архітектури Ethereum. 12 листопада 2024: Очікується, що запропоновану пропозицію для Ethereum 3.0 буде представлено на Devcon у Бангкоку, що готує ґрунт для більш широкого зворотного зв'язку від громади та потенційних наступних кроків у розвитку. ETH3.0 Мем Токен 21 березня 2024: ETH3.0 Мем Токен офіційно потрапляє у список на CoinMarketCap, що означає його дебют у публічному крипто-просторі та підвищує видимість для його меморієнтованої екосистеми. Ключові моменти На завершення, Ethereum 3.0 представляє значну еволюцію в межах мережі Ethereum, зосереджуючись на подоланні обмежень щодо масштабованості та продуктивності через передові технології. Його запропоновані оновлення відображають проактивний підхід до майбутніх вимог і корисності. Натомість ETH3.0 Мем Токен втілює суть культури, керованої громадою, у сфері криптовалют, використовуючи культуру мемів для створення привабливих платформ, які заохочують творчість і участь користувачів. Розуміння окремих цілей і функцій ETH3.0 та $eth 3.0 є надзвичайно важливим для кожного, хто цікавиться поточними подіями в крипто-просторі. З обома ініціативами, які прокладають унікальні шляхи, вони разом підкреслюють динамічну та багатогранну природу інновацій у блокчейн-технологіях.

173 переглядів усьогоОпубліковано 2024.04.04Оновлено 2024.12.03

Що таке ETH 3.0

Як купити ETH

Ласкаво просимо до HTX.com! Ми зробили покупку Ethereum (ETH) простою та зручною. Дотримуйтесь нашої покрокової інструкції, щоб розпочати свою криптовалютну подорож.Крок 1: Створіть обліковий запис на HTXВикористовуйте свою електронну пошту або номер телефону, щоб зареєструвати обліковий запис на HTX безплатно. Пройдіть безпроблемну реєстрацію й отримайте доступ до всіх функцій.ЗареєструватисьКрок 2: Перейдіть до розділу Купити крипту і виберіть спосіб оплатиКредитна/дебетова картка: використовуйте вашу картку Visa або Mastercard, щоб миттєво купити Ethereum (ETH).Баланс: використовуйте кошти з балансу вашого рахунку HTX для безперешкодної торгівлі.Треті особи: ми додали популярні способи оплати, такі як Google Pay та Apple Pay, щоб підвищити зручність.P2P: Торгуйте безпосередньо з іншими користувачами на HTX.Позабіржова торгівля (OTC): ми пропонуємо індивідуальні послуги та конкурентні обмінні курси для трейдерів.Крок 3: Зберігайте свої Ethereum (ETH)Після придбання Ethereum (ETH) збережіть його у своєму обліковому записі на HTX. Крім того, ви можете відправити його в інше місце за допомогою блокчейн-переказу або використовувати його для торгівлі іншими криптовалютами.Крок 4: Торгівля Ethereum (ETH)Легко торгуйте Ethereum (ETH) на спотовому ринку HTX. Просто увійдіть до свого облікового запису, виберіть торгову пару, укладайте угоди та спостерігайте за ними в режимі реального часу. Ми пропонуємо зручний досвід як для початківців, так і для досвідчених трейдерів.

3.2k переглядів усьогоОпубліковано 2024.12.10Оновлено 2026.06.02

Як купити ETH

Обговорення

Ласкаво просимо до спільноти HTX. Тут ви можете бути в курсі останніх подій розвитку платформи та отримати доступ до професійної ринкової інформації. Нижче представлені думки користувачів щодо ціни ETH (ETH).

活动图片