Annotated Ethereum Roadmap

Ethereum World NewsОпубликовано 2022-12-10Обновлено 2022-12-10

Введение

This document aims to serve as an entry point for the various items on the Ethereum roadmap, with a quick summary along with links for those who want to dive deeper.

This document aims to serve as an entry point for the various items on the Ethereum roadmap, with a quick summary along with links for those who want to dive deeper.

It is meant as a living document, feel free to contact me if any of the information presented here is unclear, inaccurate, outdated or missing better links.

Note: As indicated by arrows on the roadmap, the various stages listed are not consecutive, various efforts are happening in parallel.

The Merge

Goal: Have an ideal, simple, robust and decentralized proof-of-stake consensus

What’s done

December 1st, 2020 - Beacon chain launch

The introduction of Ethereum’s consensus layer secured by the ETH staked by validators.

Known as Phase 0 in the consensus specifications (annotated version by Vitalik and Danny Ryan).

October 27th, 2021 - Warmup fork (Altair) – Consensus client developpers had a trial run at coordinating a hard fork upgrade.

Altair introduced sync committees to support light clients, and tweaked some penalties.

Altair Announcement

Altair specifications (annotated version)

“What’s new in ETH2” edition about Altair

September 15, 2022 - Merge! No more PoW – The big merge between the consensus layer and the execution layer, at block number 15,537,394.

What’s next

Withdrawals – Enabling validators to withdraw all or part of their stake.

Capella fork specifies the changes on the consensus layer

EIP-4895 specifies the changes on the execution layer

Tim Beiko’s FAQ about withdrawals

Withdrawals meta-spec with other information

Distributed validators – “multisig but for staking”, where n people share the same validator and m-of-n have to agree on how it behaves

Enhances staking by protecting against accidental slashing, and making it more accessible (e.g. by trustlessly splitting the 32 ETH required among multiple participants)

This is not an in-protocol thing, teams such as SSV and Obol are working on it

View merge – Tweaks the fork-choice rule (the way validators vote) to mitigate a class of attacks

Essentially enables honest validators to “impose” their view of what the correct head of the chain is, to reduce the chance that malicious validators can split the vote and later reorganize blocks in their favor

ethresear.ch post with a lot of (very technical) background on the research

Improved aggregation — Ethereum strives to support as many validators as possible, but having every validator vote on every block (and verify every other validator’s vote) is too bandwidth-intensive. The next best thing is aggregating signatures, but that too has its limits and can be better

Explainer post on the benefits of BLS aggregation

Potential candidate: Horn

Single slot finality (SSF) — Finalize the chain every slot (12 seconds) instead of every other epoch (12.8 minutes)

Paths toward SSF

Along with improved signature aggregation, we still have to figure out two more things:

SSF consensus algorithm - Existing algorithms compatible with SSF aren’t sufficient, we want one that keeps the chain live even if over 1/3 of validators are offline.

SSF validator economics - If we end up having to limit the number of validators, how do we limit participation, and what sacrifices do we make?

Secret leader election (SLE)

Today, the validator selected to propose a block (the leader of the slot) is known a bit ahead of time, enabling a potential DoS attack specifically targetting leaders of upcoming blocks.

ethresear.ch post about a Single SLE protocol based on random shuffling: No one knows who will be the slot’s leader except the leader themselves, until they reveal their block along with a proof of their leadership.

non-single secret leader election might be an option too

Support even more validators - Ongoing long-term effort: safely supporting more validators is always desirable.

Quantum-safe aggregation-friendly signatures - Part of the long-term effort to make Ethereum safe from quantum computers before it becomes a plausible concern.

The cryptography underlying the BLS signature scheme used is known to be broken by quantum computers, but the alternative signatures schemes known to be quantum-safe aren’t as efficiently aggregated as BLS (Hence the need for a scheme that is both quantum-safe and aggregation-friendly)

The two leading quantum-safe approaches are STARK-based and Lattice-based.

The Scourge

Goal: ensure reliable and credibly neutral transaction inclusion and avoid centralization and other protocol risks from MEV.

Relevant links:

Credible Neutrality as a Guiding Principle

Various twitter threads about MEV

Write-up about MEV and PBS

List of links about PBS

What’s done

Extra-protocol MEV markets – The MEV-Boost middleware allows the average validator to profit from MEV without having to run sophisticated MEV strategies themselves.

This solution by itself incomplete as it has issues with censorship.

See the Cost of Resilience and SUAVE for ideas and plans to make these extra-protocol markets more resilient.

What’s next

Inclusion lists or alternative – Let proposers put restrictions on block builders, namely to force them to include transactions.

Inclusion list notes.

Research into constraining builders without burdening proposers.

In-protocol PBS – Enshrine a block builder’s market directly in the protocol.

MEV burn – Letting the blockchain capture value that is otherwise extracted from the on-chain economy.

Direct MEV burn proposal through proposer auction.

Committee-driven MEV smoothing would render the protocol aware of MEV.

Capping the validator set through economic incentives would indirectly burn MEV through negative issuance.

Application-layer MEV minimization — Not directly L1-related, this item involves developpers keeping MEV in mind when designing their dapps. Here are a few examples of dapps that employ MEV minimization tactics.

Distributed builder track

With block proposal staying decentralized, we now have a separate problem where block building becomes centralized. Even with all the other items on the roadmap aiming at minimizing the worst possible downsides of centralized block building, it would still be a major benefit to be able to distribute block building across many nodes.

Blob construction - Finding ways to alleviate the high bandwidth and processing requirements of data sharding across many nodes that average consumer hardware can run

Pre-confirmation services - Giving users strong assurances that their transaction will be included in the next block

Frontrunning protection - Minimizing toxic MEV like sandwiching to keep distributed building credibly neutral

It is still an active area of research with very open design considerations, so it is unclear if the previous two items should get enshrined in the protocol (hence the question marks on the roadmap diagram)

Here are some relevant links:

Talk on Block building after the merge which mentions decentralized block building

Talk on decentralizing builders

Some ideas regarding distributed block building.

The Verge

Goal: verifying blocks should be super easy - download N bytes of data, perform a few basic computations, verify a SNARK and you’re done.

This section is essentially about filling “the client gap” by making light clients finally viable: Not everyone wants to or can run a full node. The Verge aims to introduce trustless or trust-minimized alternatives that are easy to run and don’t require a lot of storage and bandwidth. The ultimate endgame of The Verge is having these light clients provide security guarantees that are equal to today’s full nodes.

Everything relies on zero-knowledge technology such as SNARKs and STARKs, which themselves rely on polynomial commitment schemes. Here are some links about that:

An approximate introduction to how zk-SNARKs are possible

Anatomy of a STARK

zkSNARKS explained like you’re someone who knows some math and some coding

On the role of Polynomial Commitment Schemes in scaling Ethereum.

What’s done

Most serious EVM DoS issues solved – Mainly gas pricing issues, fixed in the Berlin upgrade

Basic light client support (sync committees) – Thanks to sync committees, it is easy to build light clients that follow the consensus layer

See how Helios client is leveraging sync committees (with a good write-up on how these committees work).

What’s next

EIP-4844 implementation – roll out EIP-4844 to mainnet

Will require a “ceremony” to create the trusted setup: Explanation, estimated timeline, specifications

Overview of EIP4844 implementation timeline

Basic rollup scaling - relies on the following:

EIP-4844 - The scaling is still deemed basic/limited, due to the nature of “every node downloads all the data” restricting the viable capacity of blobspace

Limited training wheels for rollups (see the proposed milestones)

Full rollup scaling - relies on:

P2P design for Data Availability Sampling: Involves all the effort and research into the networking required for data sharding

DA sampling clients: Development of light-weight clients that can quickly tell if data is available or not through random sampling a few kilobytes

Efficient DA self-healing: Being able to efficiently reconstitute all the data in the harshest network conditions (e.g. malicious validators attacking, or prolonged downtime of a big chunk of nodes)

No training wheels for rollups: fully decentralized sequencers, trustless fraud provers, immutable contracts, etc.

Quantum-safe and trusted-setup-free commitments — Part of the long-term effort to make Ethereum safe from quantum computers before it becomes a plausible concern

While efficient and powerful, the polynomial commitment used everywhere (KZG) is not quantum-safe and requires a trusted setup. Research into a more ideal commitment suitable for the long term is ongoing, with the eventual goal to “hot swap” KZG under the hood

SNARK / STARK ASICs – Hardware built specially to create proofs

Verkle trees - Replace the data structure used for the global state by a more efficient one

List of links about Verkle Trees

The key benefit is having very short proofs that are easily verified by light clients to validate things like account balances using only the block header – they can already leverage sync committees to validate that a given block header is actually part of the main chain

Relies on figure out the proper specification, how to safely transition, and how it will affect the EVM gas costs of updating/editing the state (also relies on banning SELF-DESTRUCT from The Purge)

SNARK-based light clients – SNARKify the sync committee transition to quickly prove which validators form the current sync committee

Fully SNARKed Ethereum – The following 3 items put together constitute a major milestone toward Ethereum’s Endgame of having extremely efficient and trustless block verification:

SNARK for Verkle proofs – By merging Verkle proofs into a single SNARK, blocks will contain a short standalone proof about the parts of the state they modify, so it won’t be necessary to verify the whole state of block N-1 to verify that block N modified it correctly.

SNARK for consensus state transition – Move away from trust-minimized sync committees onto fully trustless verification of everything happening on the consensus layer

SNARK for L1 EVM – Leveraging the efforts done by rollup teams on zk-EVM by integrating it in L1 directly

See this post on enshrined rollups

Increase L1 gas limits – By removing today’s burden of “every node needs to store everything” to trustlessly verify blocks, it will be easier to have bigger blocks for more L1 scalability (which will automatically compound all the L2 scaling)

Move to quantum-safe SNARKs (e.g. STARKs) – Part of the long-term effort to make Ethereum safe from quantum computers before it becomes a plausible concern

SNARKs are efficient be rely on cryptography known to be broken by quantum computers, while STARKs aren’t.

The Purge

Goal: simplify the protocol, eliminate technical debt and limit costs of participating in the network by clearing old history.

What’s done

Eliminate most gas refunds - All the gas repricings done in the Berlin upgrade

Beacon chain fast sync – All the development effort towards syncing from a recent finalized epoch rather than from genesis (known as “checkpoint sync” in most consensus clients)

EIP-4444 specification – See the EIP specification.

What’s next

History Expiry — Reduces storage requirements, sync time and code complexity by letting old history expire

See this twitter thread

Relies on implementation of EIP-4444, which is contingent on alternate history access through other means (like Portal Network)

Vitalik’s AMA on History Expiry

State expiry – Fix the whole “pay once, have your data stored forever” problem regarding the state

The idea is to automatically expire unused portions of the state and only keeping a verkle tree root that users can use to revive expired state should they need it

Vitalik’s AMA on State Expiry

Relies on:

Base state expiry spec — How we actually do it, see a potential roadmap (and other options)

Address space extension — Increase the size of addresses from 20 bytes to 32 bytes to protect against collisions and add data about the state’s period

Application analysis — Figure out how it might break current applications/contracts and how they can adapt

LOG reform — Simplify the way event logs work to allow more efficiently searching of historical events

Serialization harmonization — The execution layer uses RLP for data serialization, while the consensus layer uses SSZ this would get rid of RLP in favor of using SSZ everywhere

Remove old transaction types — Stop supporting old transaction types (see EIP-2718) to remove code complexity from clients (at the cost of some backwards compatibility)

EVM simplification track

Ban SELFDESTRUCT — This opcode is the root of many problems

Pragmatic destruction of SELFDESTRUCT explains the why and how of removing this opcode

Relevant EIPs: EIP-4758 and EIP-4760 and discussion

Simplify gas mechanics — Involves removing a lot of gas-related EVM features mentioned here

Precompiles -> EVM implementations — Get rid of precompiled contracts in favor of direct EVM implementations (namely big modular arithmetic, see The Splurge).

The Splurge

Goal: Fix everything else

All the nice-to-have things that aren’t required for the higher priority stuff belong in The Splurge. The biggest item is account abstraction, but also small tweaks to existing things.

What’s done

EIP-1559 — This famous EIP came with many benefits beyond just burning ETH

ERC-4337 specification — This ERC aims at introducing Account Abstraction without modifying the core protocol

Initial explainer on ERC-4337.

What’s next

Endgame EIP-1559 – Enhance EIP-1559 by making it multidimensional, more like an AMM-curve and time-aware

EVM improvement track along with the simplification track from The Purge leading to the EVM endgame.

EVM Object Format (EOF) — A set of multiples EIPS allowing validating and versioning EVM bytecode when it is deployed. See this explainer piece and twitter thread

Big modular arithemetic – A lot of the roadmap’s cryptography relies on modular arithmetic over very large numbers, which could be done more efficiently in the EVM directly

Further EVM improvements — Anything else that’s worth adding to improve the EVM – or removing to get rid of complexity

Account abstraction track leading to the Endgame account abstraction. See Vitalik’s descriptions on the following items for more detail:

ERC-4337 – Developing compliant smart wallets that actually gain adoption

Voluntary EOA conversion — With an EIP, allow a normal account to irreversibly add code to convert into it into a contract, namely to become a 4337-compliant smart wallet.

In-protocol enshrining — Make the above conversion mandatory for all existing accounts

Verifiable Delay Functions (VDFs) — Essentially “non-parallelizable proof of work” which would enhance the randomness used in PoS and other things

See this ethresear.ch post about VDFs and their potential use

Explore solution for dust accounts – Rescuing “dust funds” that costs more gas fees to move than they are worth. See a bunch of ideas here

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

Похожее

«Шесть грецких орехов» выходят за пределы рынка и инвестируют в ИИ: акции за год выросли в три раза

Компания Yangyuan Drink (бренд "Six Walnuts") активно инвестирует в сферу искусственного интеллекта и высоких технологий, несмотря на сокращение своего основного бизнеса по производству ореховых напитков. С 2021 года компания направила почти всю годовую чистую прибыль на создание и пополнение фонда объемом 40 млрд юаней для инвестиций в AI, полупроводники и новые источники энергии. Ключевой инвестицией стало вложение 1.6 млрд юаней в компанию Yangtze Memory Technologies. Успех или неудача этой инвестиции во многом определит результат стратегического поворота компании. На фоне общего падения потребительского сектора на китайском фондовом рынке акции Yangyuan Drink показали исключительный рост, подскочив почти в три раза с начала 2024 года, что отражает восприятие компании инвесторами как перспективной "акции на тему AI". Ожидается, что в будущем компания сохранит двойную бизнес-модель: стабильный, но замедляющийся потребительский бизнес и высокорисковые венчурные инвестиции в высокие технологии, делая основную ставку на сектор AI. Однако такая стратегия сопряжена с высокой волатильностью: успешное IPO Yangtze Memory может значительно улучшить финансовые показатели, а задержки или спад в полупроводниковой отрасли приведут к резкой коррекции стоимости акций.

marsbit14 мин. назад

«Шесть грецких орехов» выходят за пределы рынка и инвестируют в ИИ: акции за год выросли в три раза

marsbit14 мин. назад

Предупреждение о ловушке ликвидности биткойна говорит, что слабый рост может предшествовать снижению до $60 000

Аналитик Мерлейн Трейдер предупредил о возможной ловушке ликвидности на рынке биткоина. По его мнению, выше текущих цен наблюдается слабое сопротивление, что может привести к краткосрочному росту. Однако ключевой риск сосредоточен ниже, в районе $60 000, где скопилась значительная масса ликвидационных ордеров. Такой сценарий создает опасность: временный рост может привлечь покупателей, после чего возможен резкий разворот и смыв "длинных" позиций в зоне $60 000. Эта область стала важным психологическим и техническим уровнем, и ее тестирование способно вызвать волну ликвидаций. В итоге, текущая структура рынка указывает на возможность роста, но он может оказаться неустойчивым без поддержки реальным спросом. Инвеситорам рекомендуется следить за динамикой цены и объемом торгов для подтверждения или опровержения данного сценария, а не рассматривать его как гарантированный прогноз.

bitcoinist17 мин. назад

Предупреждение о ловушке ликвидности биткойна говорит, что слабый рост может предшествовать снижению до $60 000

bitcoinist17 мин. назад

Интерпретация отчета: ИИ запускает суперцикл для MLCC, насколько хватит выгоды для Samsung Electro-Mechanics?

**Аналитический отчет: ИИ запускает «суперцикл» для MLCC, сколько лет продлится рост прибыли Samsung Electro-Mechanics?** Многослойные керамические конденсаторы (MLCC) переходят из циклической в структурно растущую отрасль благодаря взрывному спросу со стороны серверов ИИ. По данным Morgan Stanley, один сервер ИИ требует в 10-15 раз больше MLCC (440 тыс. штук), чем обычный сервер (30 тыс.). Помимо объема, растут требования к качеству (емкость, размер), что повышает среднюю цену (ASP). Дефицит поставок стал структурным из-за ограниченных мощностей и длительного цикла расширения производства (до 2 лет). Morgan Stanley прогнозирует рост цен на MLCC на 30% во второй половине 2026 года и на 30-50% в 2027 году. Samsung Electro-Mechanics — ключевой бенефициар: 1. **MLCC:** Прямая выгода от роста цен и объема, особенно для сегмента ИИ с более высокой рентабельностью. Доля выручки от MLCC может вырасти с 15% в 2026 до 50+% к 2030 году. Ожидается значительный рост операционной маржи и EPS. 2. **ABF-подложки:** Быстрый рост поставок и прибыли от заказов на чипы ASIC для ИИ. 3. **Новые продукты:** Заказы на кремниевые конденсаторы и пробное производство стеклянных подложек. Прогнозируется резкий рост рентабельности собственного капитала (ROE) — с 7.5% в 2025 до 32.2% в 2028 году. Текущая оценка (P/B 1.4x) ниже исторической средней, что оставляет пространство для переоценки. Целевая цена акций повышена с 920 000 до 2 560 000 вон. **Риски:** Снижение спроса на флагманские смартфоны Samsung, слабый глобальный потребительский спрос, проблемы с клиентами в Китае. **Катализаторы роста:** Дальнейший рост контрактных цен, высокий коэффициент Book-to-Bill, загрузка мощностей, новые платформы ИИ. Таким образом, история Samsung Electro-Mechanics трансформируется: из поставщика циклических компонентов в структурно растущего поставщика инфраструктуры для ИИ. Длительность этого цикла будет зависеть от спроса на чипы ИИ, ввода новых мощностей и конкурентной динамики.

marsbit31 мин. назад

Интерпретация отчета: ИИ запускает суперцикл для MLCC, насколько хватит выгоды для Samsung Electro-Mechanics?

marsbit31 мин. назад

Падение Bitcoin спровоцировало волну ликвидаций на $700 млн, поскольку кредитное плечо вымывается с рынка

Последнее падение биткойна привело к масштабному сбросу левериджа: за 24 часа было ликвидировано позиций на сумму более 700 миллионов долларов, пока BTC опускался до уровня 62 000 долларов. Падение Bitcoin на 3,3% и более резкое снижение Ether показали, как быстро стресс распространяется по рынку. Ключевой момент — не только движение спотовых цен, но и структура под ними. Когда трейдеры активно занимают позиции в одном направлении, даже небольшое движение цены может заставить биржи автоматически закрывать leveraged-позиции. Это давление ликвидаций может толкать цены дальше, вызывая новый вилок принудительных продаж. Существует два взгляда на эту ситуацию. Быки считают, что рынку необходимо было очиститься от избыточного левериджа перед устойчивым восстановлением. Медведи видят в этом провал теста поддержки на фоне давления на рисковые активы, что может быть первой стадией более глубокого падения. Дальнейшее внимание будет приковано к тому, появится ли спрос на спотовом рынке без чрезмерного левериджа, а также к поведению Ether и альткойнов. Пока рынок посылает чёткий сигнал: криптовалюты могут быстро поглощать давление продаж, но леверидж остаётся катализатором волатильности. До тех пор, пока позиции не охладятся и не вернётся спотовый спрос, рост может оставаться уязвимым для новых принудительных сбросов.

bitcoinist49 мин. назад

Падение Bitcoin спровоцировало волну ликвидаций на $700 млн, поскольку кредитное плечо вымывается с рынка

bitcoinist49 мин. назад

Сильное отступление рынка ИИ, момент GLM-5.2 от DeepSeek?

Во вторник акции, связанные с искусственным интеллектом (ИИ), столкнулись с самым резким с начала года давлением продаж. Коррекция началась на южнокорейском рынке, где ведущие компании цепочки поставок ИИ, такие как Samsung Electronics и SK Hynix, упали более чем на 10%, что привело к срабатыванию торгового останова на KOSPI. Волна распродаж затем перекинулась на США, где индекс Nasdaq упал на 2,2%, а акции в сфере ИИ и полупроводников стали аутсайдерами. Многие аналитики связывают эту коррекцию с выходом мощной китайской модели ИИ GLM-5.2 от компании Zhipu AI, что сравнивают с влиянием DeepSeek R1 в начале 2025 года. Появление сильных и доступных открытых моделей заставляет инвесторов переоценивать оправданность огромных затрат американских технологических гигантов (таких как Alphabet, Amazon, Meta) на инфраструктуру центров обработки данных. Рынок столкнулся с двойным давлением: растущими сомнениями в окупаемости инвестиций в ИИ и ожиданиями сохранения высоких процентных ставок в США из-за устойчивости экономики. Падение южнокорейских акций также могло усугубиться локальными факторами, включая критику регулятора в отношении одобрения рискованных ETF и решение MSCI не включать Южную Корею в список развитых рынков. Несмотря на резкую коррекцию, многие наблюдатели не считают, что история роста ИИ завершена. Такие аналитики, как Дэн Айвз из Wedbush, рассматривают это как необходимую «проверку на прочность» и коррекцию перегретого рынка на ранней стадии революции ИИ. Ключевой вопрос для инвесторов сместился с «будет ли рост ИИ» на «не слишком ли высока цена за этот рост», фокусируясь на том, какие компании смогут превратить капитальные затраты в денежный поток, а чьи оценки уже чрезмерны.

marsbit59 мин. назад

Сильное отступление рынка ИИ, момент GLM-5.2 от DeepSeek?

marsbit59 мин. назад

Торговля

Спот
Фьючерсы

Популярные статьи

Manyu: восходящая мем-звезда на Ethereum, готовая открыть новую эру культуры Shiba

Manyu - это мемтокен на Ethereum, который приносит децентрализованную культурную и развлекательную ценность через вирусное влияние в соцсетях и вовлечённость сообщества.

2.0k просмотров всегоОпубликовано 2025.11.27Обновлено 2025.11.27

Manyu: восходящая мем-звезда на Ethereum, готовая открыть новую эру культуры Shiba

Неделя обучения по популярным токенам 14: Glamsterdam — самое ожидаемое обновление Ethereum в 2026 году

Ordinals/Runes по-прежнему стимулируют доходы от комиссий за блоки и активность разработчиков, рассматриваются как отправная точка «нативной эмиссии активов» в сети.

1.5k просмотров всегоОпубликовано 2026.04.29Обновлено 2026.04.29

Неделя обучения по популярным токенам 14: Glamsterdam — самое ожидаемое обновление Ethereum в 2026 году

Обсуждения

Добро пожаловать в Сообщество HTX. Здесь вы сможете быть в курсе последних новостей о развитии платформы и получить доступ к профессиональной аналитической информации о рынке. Мнения пользователей о цене на ETH (ETH) представлены ниже.

活动图片