Analysis of the prospects for Ethereum protocol technology upgrades (1): The Merge | Bee Network
Since October this year, Ethereum co-founder Vitalik Buterin has published a series of articles on the future possibilities of the Ethereum protocol, covering the six parts of the Ethereum development roadmap: The Merge, The Surge, The Scourge, The Verge, The Purge, and The Splurge. This article will interpret the first part of the roadmap (The Merge), explore what other technical designs of PoS can be improved, and how to achieve these improvements.
Vitalik believes that the merge refers to the most important event in the history of the Ethereum protocol since its launch: the transition from PoW proof of work to PoS proof of equity. Today, Ethereum has been a stable and running PoS system for nearly two years, and this proof of equity has performed very well in terms of stability, performance, and avoiding centralization risks. However, there are still some important areas for proof of equity to improve.
Ethereum’s 2023 roadmap breaks it down into several parts: improvements to technical features (such as stability, performance, and accessibility to smaller validators), and economic changes to address centralization risks. According to Vitalik, this article is not an exhaustive list of improvements to proof of stake, but more of an idea that is being actively considered.
"(《世界人权宣言》) main objectives of the merger are as follows:1. Single Slot Finality (SSF): Usually it takes about 15 minutes for an Ethereum block to be finalized. However, the time required for finalization can be significantly reduced by improving the efficiency of Ethereums consensus mechanism to verify blocks. Blocks can be proposed and finalized in the same time slot without waiting for 15 minutes.
2. Confirm and complete transactions as quickly as possible while maintaining decentralization
3. Improve the feasibility of staking for individual stakers
4. Improve robustness
5. Improve Ethereum’s resistance and recovery capabilities to 51% attacks (including finality reversal, finality blocking, and censorship)
Single-slot finality and the democratization of stakingCurrently, it takes 2-3 epochs (about 15 minutes) to complete a block, and 32 ETH is required to become a staker. This was originally a compromise to strike a balance between three goals:
– Maximize the number of validators participating in staking (minimize the ETH required for staking);
– Minimize finality time;
– Minimize the overhead of running a node.
These three goals are in conflict with each other: in order to achieve economic finality (i.e. an attacker needs to destroy a large amount of ETH to revert a finalized block), every validator needs to sign two messages for each finalization. Therefore, if there are a large number of validators, it will either take a long time to process all the signatures, or require very powerful nodes to process all the signatures at the same time.
It all hinges on one key goal of Ethereum: ensuring that even a successful attack is costly for the attacker. This is what the term “economic finality” means.
There are counter-examples, and blockchains that do not have economic finality (such as Algorand) solve this problem by randomly selecting a committee to finalize each time slot. But the problem with this method is that if the attacker does control 51% of the validators, the cost of the attack is extremely low: only some of the nodes in the committee will be detected as participating in the attack and punished. This means that the attacker can repeatedly attack the chain many times.
Therefore, if Ethereum wants to achieve economic finality, a simple committee-based approach will not work, and participation of the full set of validators is required.
Ideally, Ethereum would like to improve on the status quo in two ways while preserving economic finality:
1. Finalize blocks in one slot (ideally, keep or even reduce the current length of 12 seconds) instead of 15 minutes
2. Allow validators to stake with 1 ETH (from 32 ETH to 1 ETH)
The first ensures that all Ethereum users benefit from the higher level of security achieved through finality. Today, most users cannot enjoy this security because they are unwilling to wait 15 minutes; with single-slot finality, users can see the finalization of transactions almost immediately after the transaction is confirmed. Second, if users and applications do not have to worry about the possibility of chain rollbacks, then it simplifies the protocol and the surrounding infrastructure.
The second point is to support solo stakers. According to multiple polls, the main factor preventing solo staking is the 32 ETH minimum. Lowering the minimum to 1 ETH will solve this problem.
There is a challenge here: both the goals of faster finality and more democratized staking conflict with the goal of minimizing overhead. In fact, this fact is why Ethereum did not adopt single-slot finality in the first place. However, recent research has suggested some possible solutions to this problem.
工作原理:
Single-slot finality involves using a consensus algorithm that finalizes blocks within one slot. This is not a difficult goal in itself, and many algorithms (such as Tendermint consensus) already achieve this.
A desirable property unique to Ethereum is inactivity leaks: this property allows the blockchain to continue functioning and eventually recover even if more than 1/3 of validators go offline.
Single-slot deterministic proposalThere are several leading solutions to the problem of how to make single-slot finality work at very high validator counts without incurring extremely high node operator overhead:
Option one is to brute force and implement a better signature aggregation protocol, possibly using ZK-SNARKs, which would make it possible to process signatures from millions of validators in a single time slot. For example, Horn is one of the proposals put forward to design a better aggregation protocol.
Option two is the Orbit committee, a new mechanism that allows randomly selected medium-sized committees to be responsible for chain finality, but retains attack cost characteristics. Orbit exploits pre-existing heterogeneity in validator deposit sizes to achieve the largest possible economic finality while still giving small validators a matching role.
As shown in the figure below, between the range x = 0 (Algorand committee, no economic finality) to x = 1 (Ethereum’s status quo) — Orbit SSF carves out a middle ground:
1. The cost of doing evil is still very high, which ensures extreme security;
2. But at the same time, only a medium-sized random sample of validators is required to participate in each time slot, reducing the burden on nodes.
Option three is dual staking, a mechanism with two classes of stakers, one with a higher deposit requirement and the other with a lower deposit requirement. Only the tier with the higher deposit requirement will directly participate in providing economic finality. Various proposals have been made as to what the responsibilities of the lower tier deposits should be, including:
– The right to delegate stake to a more senior stakeholder;
-Randomly select low-level stakers to attest and finalize each block;
-Generate rights for inclusion in lists, etc.
As for Ethereum’s security experience and staking centralization, each solution has its pros and cons and trade-offs: brute force cracking can solve the problem, but it requires aggregating a large number of signatures in a very short period of time, which is technically very difficult; the Orbit Committee needs to verify its security and features, and formalize and implement them; the two-layer staking mechanism faces centralization risks, which largely depend on the specific rights obtained by the low-staking layer.
In addition to single-slot finality, single secret leader election is also an important issue in Ethereum’s proof-of-stake system. Today, it is known in advance which validator will propose the next block, which creates a security vulnerability where an attacker can monitor the network, determine which validators correspond to which IP addresses, and launch a DoS attack on the validator when it is about to propose a block.
The best way to solve this problem is to hide the information about which validator will generate the next block, at least until the block is actually generated.
Single secret leader electionCurrently, it is known in advance which validator will propose the next block, which creates a security vulnerability: an attacker can monitor the network, determine which validators correspond to which IP addresses, and launch a DoS attack on the validator when it is about to propose a block.
The single secret leader election protocol solves this problem by using some 加密graphic techniques to create a “blind” validator ID for each validator, and then giving many proposers the opportunity to shuffle and re-blind the pool of blinded IDs.
However, implementing a sufficiently simple single secret leader election protocol is non-trivial.
The simplicity of the Ethereum protocol is paramount, and we do not want to add further complexity. Simplified SSLE using ring signatures is only a few hundred lines of specification code and introduces new assumptions in complex cryptography.
There is also the question of how to achieve sufficiently efficient quantum-resistant SSLE. It may eventually be the case that the “marginal additional complexity” of SSLE will only drop to a sufficiently low level if we dare to try for other reasons and introduce a mechanism for performing general zero-knowledge proofs in the Ethereum protocol at L1.
In addition, faster transaction confirmation is also one of the problems that the Ethereum proof-of-stake system needs to solve.
There is value in further reducing Ethereum’s transaction confirmation time (from 12 seconds to 4 seconds). Doing so would significantly improve the user experience of L1 and rollups while making DeFi protocols more efficient. It would also make L2 more decentralized as it would allow a large number of L2 applications to operate on rollups, reducing the need for L2 to build its own committee-based decentralized ordering.
There are two general techniques: reducing the slot time to 8 seconds or 4 seconds; allowing proposers to issue pre-confirmations during a single slot. However, it is not clear how feasible it is to shorten the slot time.
Even today, it is difficult for stakers in many parts of the world to get attestations fast enough. The 4 second slot time attempt risks validator centralization, and latency makes becoming a validator outside of a few geographically advantageous regions impractical.
The weakness of the proposer preconfirmation approach is that it can greatly improve the average inclusion time, but not the worst case. In addition, there is an open question of how to incentivize preconfirmation.
In the face of possible future quantum computing threats, Ethereum needs to actively develop quantum-resistant alternatives. Every part of the Ethereum protocol that currently relies on elliptic curves needs to have some hash-based or other quantum-resistant alternative. This justifies the conservatism in the performance assumptions around proof-of-stake design and is a reason to more actively develop quantum-resistant alternatives.
summaryThe Ethereum proof-of-stake system is full of challenges on the road of technological evolution. Due to the high threshold for Ethereum staking alone, staking service providers led by Lido have become the first choice for Ethereum node staking, and the two-layer staking solution also has a certain degree of centralization risk. In order to meet these challenges, single-slot finality and staking democratization, single secret leader election, faster transaction confirmation, and the development of quantum attack-resistant alternatives are all important issues that Ethereum needs to deal with.
Vitalik gave a comprehensive consideration to the “The Merge” upgrade and proposed as many technical solution combinations as possible. He discussed the design potential of Ethereum’s PoS technology and the currently possible technical upgrade paths.
In the process of technological upgrading, Ethereum is still striving to continuously explore and innovate, weighing and choosing between different technical solutions to find the most suitable development path and achieve higher security, performance and decentralization.
This article is sourced from the internet: Analysis of the prospects for Ethereum protocol technology upgrades (1): The Merge Related: Adeniyi Abiodun tells the story of the founding of Mysten Labs: Building Sui on the ruins of Libra Original title: The Road to Sui: The Journey That Got Me Here Original article by Adeniyi Abiodun and Mysten Labs Original translation: zhouzhou, BlockBeats Editor’s Note: Adeniyi Abiodun shares his personal experiences and discusses how they led to the creation of Mysten Labs. His team is made up of a group of experts with extensive experience in the blockchain field, especially in cryptocurrencies. Sui has a deep accumulation of experience in algorithm and system construction, and these people have brought him great confidence. Mysten Labs also plans to develop a global storage layer and network infrastructure in the future, while continuing to work towards realizing Sui’s vision. The following is the original content (for easier reading and understanding, the original content has been reorganized): Imagine this: your wife is in… #分析# 加密# 定义# 以太坊© 版权声明文章版权归作者所有,未经允许请勿转载。 上一篇 BTC突破$8.9万,MicroStrategy比特币持仓浮盈约$12.9亿 下一篇 揭秘“新闻交易”:上线2秒买入,10分钟赚千万 相关文章 Trend Research: The storm is coming, and the market will promote ETH to achieve value discovery 6086cf14eb90bc67ca4fc62b 26,068 4 BlackRock enters the ETH collateralized ETF, which tracks and projects will benefit first? 6086cf14eb90bc67ca4fc62b 25,782 From dislocation to simultaneous decline: the cryptocurrency-stock linkage reaches a crossroadsRecommended Articles 6086cf14eb90bc67ca4fc62b 21,364 1 新Dovey Wan: AI Is Siphoning Global Liquidity, Bitcoin Hasn’t Hit a Real Bear Market Yet 6086cf14eb90bc67ca4fc62b 1,264 1 Capital bets on the prediction market, who is better, Polymarket or Kalshi? 6086cf14eb90bc67ca4fc62b 31,090 1 The 166-page report ends regulatory ambiguity, with the White House offering five conclusions and two remaining question 6086cf14eb90bc67ca4fc62b 35,756 5 1 条评论 您必须登录后才能发表评论! 立即登录 总管 客人 有一个过分 10个月前 Bee.com 全球最大的 Web3 门户网站 合作伙伴 硬币卡 Binance CoinMarketCap CoinGecko Coinlive 装甲 下载蜜蜂网络APP,开始web3之旅 白皮书 角色 常见问题 © 2021-2026.保留所有权利。. 隐私政策 | 服务条款 下载蜜蜂网络 APP 并开始 web3 之旅 全球最大的 Web3 门户网站 合作伙伴 CoinCarp Binance CoinMarketCap CoinGecko Coinlive Armors 白皮书 角色 常见问题 © 2021-2026.保留所有权利。. 隐私政策 | 服务条款 搜索 搜索InSite链上社会新闻 热门推荐: 空投猎人 数据分析 加密货币名人 陷阱探测器 简体中文 English 繁體中文 日本語 Tiếng Việt العربية 한국어 Bahasa Indonesia हिन्दी اردو Русский 简体中文智能索引记录
-
2026-03-02 14:13:21
运动健身
成功
标题:初中作文胖子的特征
简介:在班上,同学都叫那些胖子肥崽或者是肥妹,我想,这些同学一定会努力的在减肥吧。有一天,我们来了一场激烈的讨论会,那就是:怎
-
2026-03-02 10:20:36
教育培训
成功
标题:亲情的作文
简介:在日常生活或是工作学习中,大家对作文都不陌生吧,借助作文可以宣泄心中的情感,调节自己的心情。相信许多人会觉得作文很难写吧
-
2026-03-02 10:18:44
综合导航
成功
标题:株式会社IN3F
简介:Just another WordPress site
-
2026-03-02 14:21:55
教育培训
成功
标题:我的语文老师作文
简介:在生活、工作和学习中,大家对作文都不陌生吧,作文是通过文字来表达一个主题意义的记叙方法。那要怎么写好作文呢?以下是小编精
-
2026-03-02 10:06:22
综合导航
成功
标题:City of Regina Case Study
简介:Teaming up to build a welcoming and intuitive platform for S
-
2026-03-02 14:19:02
综合导航
成功
标题:主母被听心声,满门炮灰摆烂吃瓜_一键难求_番外 姜岁的梦_全本小说网
简介:全本小说网提供主母被听心声,满门炮灰摆烂吃瓜(一键难求)番外 姜岁的梦在线阅读,所有小说均免费阅读,努力打造最干净的阅读
-
2026-03-02 10:01:50
教育培训
成功
标题:三年级描写景作文300字(经典)
简介:在现实生活或工作学习中,大家一定都接触过作文吧,作文一定要做到主题集中,围绕同一主题作深入阐述,切忌东拉西扯,主题涣散甚
-
2026-03-02 10:07:51
教育培训
成功
标题:2023西安交通大学软件学院考研拟录取名单火热更新!-高顿教育
简介:2023西安交通大学软件学院考研拟录取名单火热更新,学姐将其整理如下。内含各专业录取详细情况、初复试成绩以及折算后的总成
-
2026-03-02 14:12:32
综合导航
成功
标题:Environmental News Network - Nature Favours Creatures in Largest and Smallest Sizes
简介:A global perspective on environmental issues. Our mission i
-
2026-03-02 10:37:48
新闻资讯
成功
标题:最新资讯-显卡资讯_游戏资讯_系统更新_电脑资讯-驱动人生
简介:驱动人生-最新资讯频道专为用户分享驱动人生最新动态、显卡驱动更新、显卡品牌资讯、游戏更新等等最新新闻资讯。让大家了解更多
-
2026-03-02 10:35:07
综合导航
成功
标题:In-depth analysis of Perp DEX: Hyperliquid, Aster, Lighter, edgeX (3) Bee Network
简介:Lighter - Don
-
2026-03-02 10:36:57
综合导航
成功
标题:祛斑偏方 祛斑好方法 - 豆丁网
简介:祛斑的一些偏方、精选、日常生活当中的祛斑方法
-
2026-03-02 10:23:23
图片素材
成功
标题:话题的作文250字 描写话题的作文 关于话题的作文-作文网
简介:作文网精选关于话题的250字作文,包含话题的作文素材,关于话题的作文题目,以话题为话题的250字作文大全,作文网原创名师
-
2026-03-02 13:07:47
综合导航
成功
标题:Airdrop Weekly Report Linea Token Economics to be announced at the end of July; MetaMask adds a new function to claim Bee Network
简介:Original Odaily Planet Daily ( @OdailyChina ) Author: Gol
-
2026-03-02 12:19:03
综合导航
成功
标题:Все для дома и сада Каменское в Каменском ➤ RIA.com Купить все для дома и сада: цены, фото, отзывы
简介:Купить все для дома и сада в Каменском ✔️ Интернет-магазин R
-
2026-03-02 06:36:25
教育培训
成功
标题:难忘的小学作文300字集锦[8篇]
简介:无论在学习、工作或是生活中,大家都不可避免地要接触到作文吧,作文根据体裁的不同可以分为记叙文、说明文、应用文、议论文。写
-
2026-03-02 09:58:56
视频影音
成功
标题:苏州吴江做网站公司永兴县网站建设推广公司-北京孤凡电子商务有限公司
简介:苏州吴江做网站公司,永兴县网站建设推广公司,少儿编程,湖南高端网站制作公审计追踪功能实现#xff1a;为每个Sonic生
-
2026-03-02 14:17:54
视频影音
成功
标题:《Carmen di Trastevere》1962电影在线观看完整版剧情 - xb1
简介:Carmen di Trastevere(1962)电影免费在线观看完整版剧情介绍,Carmen di Trasteve
-
2026-03-02 12:46:28
教育培训
成功
标题:秋天三年级作文精彩
简介:在现实生活或工作学习中,大家都经常看到作文的身影吧,作文可分为小学作文、中学作文、大学作文(论文)。怎么写作文才能避免踩
-
2026-03-02 14:06:32
综合导航
成功
标题:生日作文600字优秀(8篇)
简介:在平平淡淡的日常中,大家最不陌生的就是作文了吧,作文是由文字组成,经过人的思想考虑,通过语言组织来表达一个主题意义的文体
-
2026-03-02 14:05:53
游戏娱乐
成功
标题:饥荒:海难 游戏截图截图_饥荒:海难 游戏截图壁纸_饥荒:海难 游戏截图图片_3DM单机
简介:饥荒:海难 游戏截图截图_饥荒:海难 游戏截图壁纸_饥荒:海难 游戏截图图片_3DM单机
-
2026-03-02 10:28:10
综合导航
成功
标题:Vans Skate Authentic Shoes - Wrapped Drizzle – CCS
简介:Color:Black,Shoe Fit:Low,Shoe Material:Suede,Shoe Sole:Vulca
-
2026-03-02 10:28:54
综合导航
成功
标题:How ICF Helped Enable Tri-Agency Task Force for Emergency Diagnostics' Real-time Data Sharing ICF
简介: The real-time transfer of data between agencies allows them
-
2026-03-02 10:36:16
综合导航
成功
标题:忆江南_500字_作文网
简介:哎,小姐,你慢点! 嘘 别说话。 一蓝衣少女鬼鬼祟祟的在大街上躲藏着,身后跟着一小丫头,乖乖的跟在少女身后。 蓝衣
-
2026-03-02 10:24:36
教育培训
成功
标题:2025年中级注册安全工程师考试报名入口-相关阅读-233网校
简介:本页面提供:“2025年中级注册安全工程师考试报名入口”的相关阅读,包含:报名时间、报名流程、报名费、考试教材、准考证打
-
2026-03-02 14:11:18
教育培训
成功
标题:爷爷作文400字(优选5篇)
简介:在平日的学习、工作和生活里,大家都跟作文打过交道吧,作文是从内部言语向外部言语的过渡,即从经过压缩的简要的、自己能明白的
-
2026-03-02 12:18:23
综合导航
成功
标题:Greystone College Canada Montréal
简介:Study & work at Collège Greystone in Montréal. Business prog
-
2026-03-02 14:18:32
视频影音
成功
标题:《സുമതി വളവ്》2025电影在线观看完整版剧情 - xb1
简介:സുമതി വളവ്(2025)电影免费在线观看完整版剧情介绍,സുമതി വളവ്主要演员阵容、上映时间、最新预告片下
-
2026-03-02 12:34:34
综合导航
成功
标题:雨中即景作文
简介:在学习、工作、生活中,大家或多或少都会接触过作文吧,作文是一种言语活动,具有高度的综合性和创造性。那么问题来了,到底应如
-
2026-03-02 10:07:21
综合导航
成功
标题:岁月如歌初三作文
简介:在平平淡淡的日常中,大家都不可避免地会接触到作文吧,作文根据体裁的不同可以分为记叙文、说明文、应用文、议论文。相信许多人