Exploring Eclipse’s Canonical Ethereum Bridge and Its Advanced Proving System

芝麻开门

芝麻开门(Gateio)

注册芝麻开门享最高$2,800好礼。

币安

币安(Binance)

币安是世界领先的数字货币交易平台,注册领100U。

Eclipse’s Canonical Ethereum Bridge and Proving System consists of three layers: Execution (SVM transaction execution), Settlement (Ethereum-based bridge and fraud proofs), and Data Availability (Celestia for data blobs). The bridge enables deposits, withdrawals, and fraud proofs, leveraging Celestia’s Blobstream for data verification. Fraud proofs ensure correct state transitions by validating transaction inputs and outputs. Eclipse’s design avoids global state trees, using transaction chaining for efficiency. The system includes safeguards against invalid batches, with verifiers able to challenge incorrect commitments. Eclipse’s modular L2 architecture emphasizes trust minimization and scalability.

*Forward the Original Title:Exploring Eclipse’s Canonical Ethereum Bridge and Proving System

An Overview of Our Canonical Bridge

Eclipse’s architecture is built upon three fundamental layers that work in harmony to create a robust blockchain ecosystem. At the execution layer, we’ve implemented a modified version of the Solana Labs client (v1.17) to handle SVM transaction processing. The settlement layer operates through our canonical bridge on Ethereum, which not only determines Eclipse’s fork-choice rule but also serves as the submission point for fraud proofs. Completing this triad is the data availability layer, where Eclipse publishes essential verification data as blobs on Celestia’s decentralized network.

The diagram below illustrates how these modules interact:

Exploring Eclipse's Canonical Ethereum Bridge and Its Advanced Proving System

This article will focus primarily on Eclipse’s Ethereum bridge component. Through Blobstream, Celestia’s validator set relays signed attestations to Ethereum, verifying the proper publication of Eclipse’s slot data batches. This mechanism enables Eclipse’s bridge to cross-check fraud proof data against Celestia’s signed data roots. We’ll explore the complete workflow covering fund deposits through our bridge, the posting of Eclipse block batches as data blobs on Celestia, withdrawal processing, and fraud proof generation in exceptional circumstances.

Depositing via Eclipse’s Native Ethereum Bridge

When users initiate deposits through Eclipse’s native Ethereum bridge, the process unfolds through several coordinated steps. The journey begins when a user interacts with Eclipse’s Deposit Bridge contract on the Ethereum network. Eclipse’s SVM executor then detects this deposit through its relayer system, which monitors both the deposited amount and destination address. The relayer subsequently engages with the SVM bridge program to facilitate the transfer of funds to the intended recipient address.

As an additional security measure, the relayer verifies the deposit transaction using a zk-light client (currently in development). The final step involves the block containing the post-deposit transfer transaction being finalized and published through Solana’s Geyser Plugin mechanism.

The diagram below shows the interactions between Ethereum, Celestia, and the SVM Executor during the deposit flow described above:

Exploring Eclipse's Canonical Ethereum Bridge and Its Advanced Proving System

Publishing Eclipse’s Slots to Celestia as Data Blobs

The process of publishing Eclipse’s slot batches to Celestia begins with the SVM executor transmitting each Eclipse slot to the message queue via the Geyser interface. These slot batches are then formatted and posted to Celestia as data blobs, creating a verifiable record of Eclipse’s blockchain activity. Celestia’s validator set generates cryptographic commitments for these data blobs, enabling transaction inclusion proofs against the published data root. These critical data roots, embedded in every Celestia block header, are then relayed to Eclipse’s bridge contract on Ethereum through Blobstream’s secure channel.

The diagram below from Celestia explains how the commitment of the data within a given Celestia block is stored in the block header:
Exploring Eclipse's Canonical Ethereum Bridge and Its Advanced Proving System

Withdrawing and Submitting Fraud Proofs to Eclipse’s Ethereum Bridge

Similar to other L2 solutions employing fraud proofs (such as Arbitrum and Fuel), Eclipse implements a challenge period for withdrawals to allow for potential fraud proof submissions. The process begins with the SVM executor regularly posting commitments to Eclipse’s slot epochs (comprising predetermined batch quantities) to Ethereum, accompanied by collateral deposits. Eclipse’s bridge contract performs preliminary validation checks on the submitted batch data structure (detailed in the Fraud Proof Design section).

If the batch passes these initial checks, a predefined challenge window opens during which network verifiers can submit fraud proofs if they detect invalid state transitions. Successful fraud proofs result in the verifier claiming the executor’s collateral, rejection of the disputed batch, and reversion of Eclipse’s canonical state to the last valid batch commitment. In such cases, Eclipse’s governance mechanism would initiate the selection of a new executor.

Conversely, if the challenge period concludes without any successful fraud proofs, the executor reclaims its collateral along with a reward. The Eclipse bridge contract then processes all withdrawal transactions included in the now-finalized batch, completing the withdrawal cycle.

Fraud Proof Design

Our fraud proof system draws inspiration from the work of Anatoly Yakovenko and John Adler. The fraud proof mechanism requires verifiers to identify transactions containing invalid state transitions, provide the relevant transaction inputs, and demonstrate how re-executing the transaction with these inputs produces outputs that diverge from the on-chain commitment.

Eclipse’s approach leverages Celestia’s merklization of block batch blobs for transaction inclusion proofs via Merkle witnesses. Unlike EVM-based L2s that maintain a global state tree, Eclipse prioritizes performance by avoiding transaction-by-transaction state tree updates. For output verification, Eclipse’s system generates zk-proofs rather than employing the interactive verification games common in EVM-based solutions.

All Eclipse transactions follow a consistent pattern of consuming input accounts, executing transactions, and producing output accounts:

Exploring Eclipse's Canonical Ethereum Bridge and Its Advanced Proving System

Our fraud proof design hinges on the observation that every input account must originate as an output account from a previous transaction. This allows our system to reference prior transactions rather than requiring Merkle witnesses to a global state tree. This innovative approach introduces new fraud accusation types, including invalid previous transaction references or already-spent input accounts.

Transaction Inputs Posted to Celestia

The data posted to Celestia includes both the original transaction data from the sequencer and execution data from the SVM executor. The execution data contains crucial information such as transaction counts, Celestia namespace locations, account hashes with their originating transaction counts, relevant sysvars with their values and originating transactions, and transaction outcomes (successful outputs or failure indicators).

Batch Commitments Posted to The Ethereum Bridge

Alongside the Celestia data, batch commitments are relayed to the Ethereum contract, including namespace locations for transaction and execution data, plus lists of deposits, withdrawals, and overrides with their associated Eclipse transaction counts.

Criteria for an Invalid Batch

Our system identifies several potential batch invalidity scenarios, ranging from malformed namespace locations to missing execution data or incorrect transaction outputs. The verification process may involve submitting Celestia namespace locations, transaction sequences, or zk-proofs of correct execution (potentially generated through RISC Zero’s Bonsai). The bridge contract automatically detects certain invalid conditions, while others require verifier intervention. When invalid batches are identified, the bridge contract rolls back to the last provably correct commitment while preserving all transaction records.

Parting Thoughts

This overview has provided insights into Eclipse’s trust-minimized Ethereum bridge and our innovative fraud proof design. As our modular L2 solution continues to evolve, we’ll be sharing more technical documentation and articles about various aspects of the Eclipse ecosystem in the coming weeks.

For those interested in participating in the Eclipse Testnet, detailed instructions are available here. We welcome questions and feedback through our Twitter or Discord channels.

Footnotes

[1]: The node which computes the results of SVM transactions and applies the eventual output to Eclipse’s new state

[2]: An operator which passes on-chain events between Ethereum and Eclipse

[3]: Note that the executor, not the sequencer, posts this. If it were included in the data posted by the sequencer, it would add the complication that the sequencer could skip over a count, making it impossible for the executor to do their job correctly. This could be compensated for in the fraud proof design, but it would add extra complexity. A second advantage of having only the executor post the count is that it makes it easy to allow transaction overrides to be posted to Celestia, if desired.

[4]: SVM accounts can be represented with a unique hash. The only way this hash is modified is via a transaction.

[5]: To do this without an excessive amount of hashing, we will run a trace on each executed program to see which parts of each used sysvar are actually accessed. This is possible, but will require modifying Solana’s BPF interpreter.

[6]: This includes data for attempted transactions that failed to execute.

Disclaimer:

  1. This article is reprinted from [[mirror], All copyrights belong to the original author [Eclipse]. If there are objections to this reprint, please contact the Gate Learn team, and they will handle it promptly.
  2. Liability Disclaimer: The views and opinions expressed in this article are solely those of the author and do not constitute any investment advice.
  3. Translations of the article into other languages are done by the Gate Learn team. Unless mentioned, copying, distributing, or plagiarizing the translated articles is prohibited.

声明:文章不代表CHAINTT观点及立场,不构成本平台任何投资建议。投资决策需建立在独立思考之上,本文内容仅供参考,风险 自担!转载请注明出处:https://www.chaintt.cn/12088.html

CHAINTT的头像CHAINTT
上一篇 2025年7月20日 下午7:47
下一篇 2025年7月20日 下午8:23

相关推荐

  • 加密代币数量激增:从2022年2万枚飙升至1890万枚 Solana、Base及BSC链上Launchpad热潮成主因

    加密货币可交易代币数量自2022年以来呈爆发式增长,CoinMarketCap追踪的数字资产从约2万种激增至2025年中的1890万种,增幅达945倍。其中90%的新增代币来自Solana、Base和BNB三大高吞吐量网络,得益于低费用和简易发行工具。Solana成为核心平台,仅Pump.fun就创建了1140万SPL代币。Base发展迅猛,Zora工具推动其创作者代币超150万枚。尽管代币数量激增,流动性却未同步跟进,平均每个代币的稳定币流动性从2021年的180万美元骤降至2025年的5500美元,导致大多数代币流动性差、易被操控。市场价值仍集中在少数主流币种,比特币和以太坊的主导地位持续增强。

    2025年8月2日
    17900
  • 全面解析Solana SVM:技术原理与应用指南

    Solana虚拟机(SVM)是支撑Solana区块链的核心执行环境,采用Rust编程语言和SeaLevel并行处理技术,显著提升了交易吞吐量和网络可扩展性。与以太坊虚拟机(EVM)的顺序处理模式不同,SVM支持同时执行多个智能合约,实现更高效率。SVM通过验证者节点网络处理交易,将智能合约编译为BPF字节码执行,并采用乐观并发控制技术优化性能。作为EVM的有力竞争者,SVM支持DeFi、GameFi等多样化应用,但其并行模型和Rust语言门槛仍面临挑战。随着AI技术整合,SVM有望进一步提升采用率。

    2025年11月22日
    4100
  • 模块化架构解析及其在以太坊未来发展中的关键作用

    区块链架构之争:单体与模块化的未来 Solana凭借单一全局状态架构实现高效低费,但面临中心化风险;模块化方案(Celestia/Avail/EigenDA)通过数据可用性层降低硬件门槛,推动Rollup生态爆发。以太坊正通过EIP-4844向模块化转型,试图平衡扩展性、安全性与去中心化。行业共识逐渐倾向模块化设计,但外包数据可用性的安全性争议仍存。

    2025年10月7日
    7500
  • 35个必知模块化协议:区块链开发者的终极指南

    模块化区块链生态全景解析 模块化架构正重塑区块链技术范式,通过解耦执行层、结算层、共识层和数据可用层实现高效扩展。Celestia、EigenLayer等协议引领模块化浪潮,提供数据可用性、再质押等核心组件。生态涌现出Fuel、Dymension等50+创新项目,覆盖Rollup即服务、互操作性、AI网络等赛道,获得超5亿美元融资。模块化设计非短期趋势,而是解决扩容瓶颈的底层革新,将持续推动加密基础设施演进。

    2025年11月24日
    6000
  • Rollup估值分析:高估还是低估?深入探讨Rollup收入与成本结构

    以太坊Rollup生态经济分析 当前以太坊Rollup生态总TVL超370亿美元,但主流项目市值远低于Solana。2023年以太坊收入20亿美元,而头部Rollups年收入仅数千万美元,收入差距显著。Rollup商业模式通过Sequencer收取交易费(基础费+优先费+MEV)覆盖L1数据成本(占支出95%)和固定运营成本,EIP4844升级使DA成本降低50-99%。数据显示OP系Rollups利润率最高(Base达85%),而ZK系因高验证成本在低交易量时易亏损。长期看,Rollups规模经济优势将随交易量增长显现,但需平衡成本结构与用户补贴策略。

    2025年12月4日
    7500

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

风险提示:防范以"数字货币""区块链"名义进行非法集资的风险