ETC Olympia Development Part 1: Implementing ECIP-1111 and ECIP-1112

金色财经Опубликовано 2025-12-12Обновлено 2025-12-12

Введение

ETC Olympia Development Series Part 1: Implementing ECIP-1111 and ECIP-1112 This article introduces the first part of the Ethereum Classic Olympia development series, focusing on the implementation of ECIP-1111 and ECIP-1112. These two proposals are the only components within the broader Olympia framework that modify consensus behavior. ECIP-1111 modernizes the fee market by introducing an EIP-1559-style mechanism with a base fee and optional priority tip (miner tip). A key difference from Ethereum is that the base fee is not burned but is instead redirected to a treasury address defined by ECIP-1112. It also adds support for Type-2 transactions and the BASEFEE opcode (0x48), ensuring compatibility with modern EVM tooling and wallets. Crucially, it does not change miner rewards, monetary policy, or existing transaction types. ECIP-1112 defines an immutable, deterministic treasury smart contract that will receive the redirected base fees. This vault is designed to be receive-only upon activation, meaning it can accumulate value but cannot distribute funds until a separate, subsequent governance layer (defined in other ECIPs) is deployed and activated on the contract layer. The article emphasizes the modular architecture of Olympia. While the suite includes five ECIPs (1111-1115), only these two affect consensus. This separation ensures that the core protocol remains minimal and auditable, while future governance and funding mechanisms can evolve independently at the contra...

Ethereum Classic Core Developers - Olympia Development Series (Part 1)

Implementing ECIP-1111 and ECIP-1112: Base Fee Redirection and the Immutable Treasury

1. Introduction - From Concept to Code

This section provides an overview of the overall architecture of Olympia: its purpose, development history, and how ECIPs 1111-1115 fit into the modular, multi-layer upgrade path. This article will delve into the current engineering practices for two ECIPs, which together define the consensus boundaries of Olympia:

  • ECIP-1111 — EVM and Protocol Upgrades

  • ECIP-1112 — Immutable Treasury Contract

These two proposals are the only components in Olympia that modify consensus behavior. Other parts of the framework—governance (ECIP-1113), funding proposals (ECIP-1114), and the optional smoothing mechanism (ECIP-1115)—all operate at the contract layer and do not affect block validity or fork choice. On November 11, 2025, Ethereum Classic core developers initiated the implementation phase, preparing consensus logic and reference client infrastructure for a potential Mordor testnet deployment.

This article outlines:

  • What ECIP-1111 introduces

  • How ECIP-1112 defines the treasury target address

  • How these components work together

  • What is currently being prototyped in reference client development

This article only describes design proposals and implementation work and does not indicate that they will necessarily be activated or adopted in the future through the ECIP-1000 process. Before deploying the consensus layer changes of ECIP-1111 or ECIP-1112 to Mordor or the mainnet, ETC clients must first verify their stability and compatibility under baseline conditions.

2. ECIP-1111 — Modernizing the Fee Mechanism, Minimizing Network Disruption

ECIP-1111 integrates two widely adopted EVM improvements:

  • EIP-1559-style fee mechanism (Base Fee + optional tip) This mechanism introduces:

  • A dynamically adjusting base fee (BASEFEE),

  • An optional high-priority fee (tip) still paid directly to miners

  • And a more predictable fee market for modern tools.

2. Support for Type-2 (1559-style) transactions: This functionality has become standard for most wallets and infrastructure.

3. BASEFEE opcode (0x48): This exposes the current block's BASEFEE to contract logic (gas estimators, DEX routers, toolchains, etc.).

What changes for Ethereum Classic (ETC)?

Only one behavior differs from the Ethereum mainnet:

  • Ethereum Foundation (ETH): BASEFEE is burned.

  • Ethereum Classic (ETC): BASEFEE is redirected to the treasury defined by ECIP-1112. All other EIP-1559 semantics remain unchanged.

What remains the same?

  • Miner tips remain unchanged.

  • Block rewards remain unchanged.

  • Monetary policy (ECIP-1017) remains unchanged.

  • Traditional transaction types (Type-0 and Type-1) remain fully valid.

  • Existing contracts will not break; existing applications require no modifications.

  • No additional trust assumptions or permission mechanisms are introduced.

ECIP-1111 is additive, minimal, and strictly limited to modernizing the fee mechanism and enabling the BASEFEE redirection function.

3. ECIP-1112 — The Immutable Deterministic Treasury

ECIP-1112 defines the receiving address for the redirected base fees: a minimal, immutable smart contract deployed at a deterministic address. These definitions remain theoretical until client software demonstrates consistent behavior in a multi-client environment, a milestone requiring comprehensive testing to safely assess the Olympia components.

Core Features

  • Immutability: No upgrade key, no admin, no proxy pattern.

  • Deterministic address (e.g., via CREATE2): All clients agree on the same treasury destination.

  • Receive-only upon activation: The treasury can accumulate value but cannot release funds until subsequent governance is activated.

  • No internal governance logic: Purely a custody layer, not a decision-making layer.

Upon activation (testnet or mainnet):

  • The treasury can only receive funds.

  • No withdrawal mechanism is enabled until ECIP-1113 and ECIP-1114 are deployed, audited, and intentionally activated. This separation ensures predictability for consensus upgrades and makes them independent of the implementation of any governance scheme.

4. Clear Consensus Boundaries

Although Olympia comprises five ECIP proposals, only ECIP-1111 and ECIP-1112 change consensus behavior.

Consensus Boundary Summary

  • ECIP-1111 — Protocol layer. Introduces consensus changes: new base fee mechanism, Type-2 transactions, and the BASEFEE opcode.

  • ECIP-1112 — Protocol/Contract layer. Introduces consensus changes: defines the deterministic treasury receiving address for redirected base fees.

  • ECIP-1113 — Contract/Application layer. No consensus changes.

  • ECIP-1114 — Contract/Application layer. No consensus changes.

  • ECIP-1115 — Contract/Application layer. No consensus changes.

This modular structure ensures:

  • Consensus-critical logic remains lean and auditable,

  • Governance and funding mechanisms can evolve at the contract layer,

  • Improvements to ECIP-1113 to 1115 require no additional consensus changes.

If adopted, clients implementing ECIP-1111 and ECIP-1112 will maintain consensus compatibility, unaffected by subsequent governance layer deployments. Reference implementations can begin prototyping consensus logic during the draft stage, but these changes must undergo comprehensive testing (including baseline client validation such as the Gorgoroth verification described in Part II) before being merged into production clients.

5. Why Governance Activation is Delayed

If ECIP-1111 and ECIP-1112 are activated, base fees will begin flowing into the treasury—but treasury spending will remain disabled.

This phased deployment enables:

  • Independent testing of base fees

  • Comprehensive auditing of ECIP-1113 and ECIP-1114

  • Precise coordination among client implementers and infrastructure providers

  • Predictable behavior for node operators

If governance contracts are subsequently deployed and activated, the treasury will connect with authorized executors entirely at the contract layer (not the consensus layer).

6. Type-2 Transactions and Long-term EVM Interoperability

Type-2 transaction support is crucial for Ethereum Classic to maintain compatibility with:

  • Modern wallets

  • Exchanges and custody services

  • RPC infrastructure

  • Tooling frameworks (Hardhat, Foundry, etc.)

  • Block explorers

  • Cross-chain interoperability

Type-2 transactions do not alter user requirements or introduce permission mechanisms. Traditional transaction types will remain fully supported.

Type-2, as an incremental feature, ensures ETC maintains interoperability with the mainstream transaction format of the EVM ecosystem.

7. The Broader Context — Maintaining a Programmable Proof-of-Work Base Layer

Together, ECIP-1111 and ECIP-1112 constitute a foundational step for Ethereum Classic towards a sustainably funded, operational model for programmable proof-of-work—provided the community chooses to adopt these proposals.

These proposals achieve their goals without:

  • Modifying miner incentives

  • Introducing inflation

  • Changing monetary policy

  • Adding a governance layer to consensus

  • Altering Ethereum Classic's security assumptions

Their purpose is limited to:

  • Modernizing the fee market

  • Establishing a transparent protocol-level value accrual mechanism

If adopted, these changes will pave the way for the contract-layer governance and funding systems in subsequent Olympia proposals, without requiring new consensus rules.

8. Conclusion — Minimal, Secure, and Forward-Compatible

ECIP-1111 and ECIP-1112 define the consensus layer components proposed within the Olympia framework. They:

  • Add Type-2 and base fee mechanisms

  • Redirect the base fee to a deterministic treasury

  • Keep all existing user and miner behavior unchanged

  • Prepare ETC for future contract-layer components

These proposals do not introduce governance logic into the consensus mechanism, nor do they add trust assumptions on top of the existing EIP-1559/EIP-3198 semantics. Their aim is to preserve the conservatism of ETC's core protocol and EVM ecosystem compatibility, while enabling sustainable value flows at the contract layer.

9. ECIP Process Clarity

The Olympia ECIP specifications (1111–1115) are currently in the draft stage and under active discussion. Reference clients have initiated early implementation work on ECIP-1111 and ECIP-1112, which is fully consistent with the provisions of the ECIP-1000 draft stage. Reference implementations will only be considered for mainnet activation after testing on the Mordor testnet is completed. After testnet results are qualified, ECIP proposers may submit specification update proposals. Any decision to advance to "Accepted" status or schedule mainnet activation must undergo community review and the full ECIP-1000 evaluation process. This article outlines the design and implementation work being advanced during the draft stage.

10. What's Next in the Series

With the consensus design framework established, the next installment will focus on the client layer—the Fukuii alpha testing plan is about to launch, aiming to validate ETC client interoperability before Olympia integrations.

Disclaimer: The content of this article does not constitute any investment or financial advice. The content is reproduced from EthereumClassic and is for industry information reference only. If you have questions or copyright issues, please contact us for removal.

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

Связанные с этим вопросы

QWhat are the two ECIPs that modify consensus behavior in the Olympia upgrade series?

AECIP-1111 (EVM and Protocol Upgrades) and ECIP-1112 (Immutable Vault Contract) are the two proposals that modify consensus behavior.

QHow does the handling of the BASEFEE differ between Ethereum (ETH) and Ethereum Classic (ETC) under ECIP-1111?

AOn Ethereum (ETH), the BASEFEE is burned. On Ethereum Classic (ETC), the BASEFEE is redirected to the treasury defined by ECIP-1112.

QWhat is the core purpose of the vault defined in ECIP-1112 at the time of its initial activation?

AAt activation, the vault is receive-only; it can accumulate value but has no mechanism to withdraw or release funds until governance proposals (ECIP-1113 and ECIP-1114) are deployed, audited, and intentionally activated.

QWhich components of the Olympia series operate purely at the contract/application layer without changing consensus rules?

AECIP-1113 (Governance), ECIP-1114 (Funding Proposals), and ECIP-1115 (Optional Smoothing Mechanism) operate at the contract/application layer and do not change consensus behavior.

QWhat is the stated goal of implementing Type-2 (EIP-1559-style) transactions on Ethereum Classic?

AThe goal is to ensure interoperability with the broader EVM ecosystem, including modern wallets, exchanges, RPC infrastructure, development frameworks, and block explorers, by supporting a mainstream transaction format.

Похожее

Nexo запускает регулируемое криптообеспеченное кредитование в Австралии

Nexo Australia объявила о запуске регулируемых кредитных линий, обеспеченных криптовалютой, после того как стала кредитным представителем в соответствии с Национальным законом Австралии о защите потребительского кредита. Теперь клиенты могут брать кредиты в австралийских долларах или стейблкоинах, используя свою криптовалюту в качестве залога, не продавая ее. Средства обычно доступны в течение 24 часов с гибким графиком погашения, без фиксированного срока и платы за оформление. Процентные ставки варьируются от 0,9% до 21,9% в зависимости от типа кредитной линии и уровня лояльности клиента. Платформа предлагает на выбор Smart и Standard кредитные линии, которые различаются ставками, выбором активов и управлением залогом. Nexo предупреждает о рисках маржин-коллов и ликвидации, что означает возможность потери части или всего залога при падении его стоимости. Это делает Nexo одной из немногих криптоплатформ, предлагающих регулируемые криптокредиты в Австралии. Nexo Australia зарегистрирована в AUSTRAC как поставщик услуг с виртуальными активами и является членом AFCA.

cointelegraph10 мин. назад

Nexo запускает регулируемое криптообеспеченное кредитование в Австралии

cointelegraph10 мин. назад

У компании BONK Crypto Treasury осталось всего 2,1 миллиона долларов наличными, при этом 70% доходов поступают с платформы основателя

14 августа публичная компания Bonk, Inc. (BNKK) обнародовала финансовые результаты за первое полугодие 2026 года. Выручка составила $5,5 млн, что на 6218% больше, чем за аналогичный период прошлого года, однако чистый убыток достиг $7,88 млн. Основной причиной убытка стала нереализованная потеря в $8,17 млн из-за падения стоимости активов в виде мем-токена BONK. Наиболее тревожным показателем является состояние ликвидности: остаток денежных средств сократился до всего $214 тысяч, что, по оценкам, при текущем уровне расходов хватит лишь на 9 дней. Аудиторская фирма M&K CPAS выразила серьезные сомнения в способности компании продолжать деятельность. Особое внимание вызывает структура выручки: $3,92 млн (71%) поступило от платформы LetsBonk.fun в качестве доли от доходов. Эта платформа связана с основателем компании Митчеллом Руди через аффилированное лицо Bonk Digital, Inc. Руди контролирует около 40,2% обыкновенных акций через Lucky Dog Holdings, а также владеет всеми привилегированными акциями серии C, которые дают право избирать половину совета директоров. Таким образом, ключевые решения и основной источник дохода компании сосредоточены в одних руках. Компания, ранее известная как производитель напитков Safety Shot, сменила название и стратегию в октябре 2025 года, позиционируя себя как мост между традиционными рынками и децентрализованной экономикой. Ее основные активы — токены BONK и доля в доходах LetsBonk.fun. Однако нынешняя финансовая зависимость от единственной платформы, связанной с основателем, в сочетании с критически низким уровнем денежных средств ставит под вопрос ее устойчивость.

marsbit32 мин. назад

У компании BONK Crypto Treasury осталось всего 2,1 миллиона долларов наличными, при этом 70% доходов поступают с платформы основателя

marsbit32 мин. назад

В CryptoQuant отметили сигнал разворота биткоина

Аналитики CryptoQuant отметили потенциальный разворот биткоина, так как ончейн-метрики показывают первые признаки восстановления спотового спроса. Показатель вплотную приблизился к положительным значениям впервые с февраля 2026 года. Исторически такой сигнал сопровождался медианным ростом на 18,1% в последующие 60 дней с вероятностью успеха 78-87%. Bitfinex Alpha считает, что для полноценного восстановления уже выполнены два из трех условий: улучшились ожидания по ставке ФРС, а финансовые условия остаются мягкими. Однако отсутствует ключевой фактор — переток капитала из традиционных рынков в криптовалюты. Наблюдаются оттоки из спотовых биткоин-ETF и замедление притока в корпоративные казначейства. Wintermute оценивает ситуацию осторожнее, указывая на крупные недельные оттоки из ETF и давление продаж со стороны майнеров, таких как Riot Platforms, которые вынуждены продавать монеты из-за высокой себестоимости добычи. Сочетание этих факторов лишает рынок источников нового спроса. Эксперты отмечают, что рынок стал тонким, и даже небольшой поток средств может вызвать сильное движение цены. Позитивный сценарий предполагает возврат выше $70 000, а при негативных потоках следующей зоной поддержки может стать район $57 000.

cryptonews.ru34 мин. назад

В CryptoQuant отметили сигнал разворота биткоина

cryptonews.ru34 мин. назад

Сильный рубль — это хорошо? Не для бюджета: казна уже недосчиталась 1,5 трлн

Российский бюджет с начала 2026 года недополучил около 1,5 трлн рублей из-за более сильного, чем планировалось, курса рубля. В бюджетной модели был заложен среднегодовой курс 92,2 рубля за доллар, но фактический средний курс за почти восемь месяцев составил лишь 76,9 рубля. Укрепление рубля на каждый рубль снижает годовые доходы бюджета на 140–160 млрд рублей, а с учетом нефтегазовых доходов потери могут достигать 160 млрд рублей на каждый рубль курса. Курс демонстрировал волатильность, достигнув минимума около 71 рубля за доллар в мае, но к середине августа ослабел до 85,16 рубля. Несмотря на это ослабление, средний показатель за год остается значительно ниже бюджетного ориентира. Прогнозируемый среднегодовой курс составляет 80–82 рубля за доллар, что может привести к недополучению бюджетом около 1,6 трлн рублей по итогам года. Сильный рубль сдерживает инфляцию, но сокращает рублевую выручку экспортеров и создает риски для исполнения социальных расходов. На динамику курса влияет не только цена на нефть, но и бюджетное правило. Минфин прекратил продажи валюты по этому правилу ранее в году, что уменьшило предложение долларов и поддержало рубль. Бюджетной политике придется адаптироваться к условиям более крепкой национальной валюты.

cryptonews.ru35 мин. назад

Сильный рубль — это хорошо? Не для бюджета: казна уже недосчиталась 1,5 трлн

cryptonews.ru35 мин. назад

Trade.xyz забирает более половины объёма торгов Hyperliquid благодаря фьючерсам на акции AI-чипов и нефти

**Резюме** В августе 2026 года торговая платформа Trade.xyz, построенная на Hyperliquid, захватила более 55% общего объема торгов на этом децентрализованном биржевом протоколе для перпетуальных контрактов. Ее успех обусловлен запуском популярных рынков, связанных с акциями производителей AI-чипов (например, SK Hynix, Micron), индексами, товарами (нефть, серебро) и традиционными индексами (S&P 500, Nasdaq 100), что привлекло трейдеров, желающих получить доступ к этим активам в режиме 24/7. Это стало возможным благодаря обновлению HIP-3 в Hyperliquid, которое позволило строителям (builders) создавать свои собственные рынки перпетуальных контрактов, предварительно застейкав 500 тыс. токенов HYPE и участвуя в аукционах за право запуска новых пар. Trade.xyz стал доминирующим строителем, выиграв множество аукционов и предложив ключевые рынки. За последний месяц Trade.xyz сгенерировала комиссий на сумму около 5 млн долларов США. Эти сборы делятся поровну с Hyperliquid, которая направляет свою долю на выкуп и сжигание (buyback & burn) нативного токена HYPE, создавая для него механизм накопления стоимости. Растущая доля Trade.xyz подчеркивает ее центральную роль в экосистеме Hyperliquid и зависимость объема и доходов протокола от успеха одной ключевой платформы.

marsbit1 ч. назад

Trade.xyz забирает более половины объёма торгов Hyperliquid благодаря фьючерсам на акции AI-чипов и нефти

marsbit1 ч. назад

Торговля

Спот

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

Как купить ETC

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

648 просмотров всегоОпубликовано 2024.03.29Обновлено 2026.06.02

Как купить ETC

Обсуждения

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

活动图片