1. Abstract Rollup is a scalability solution for Ethereum Layer 2, aiming to enhance the transaction throughput of Ethereum by processing transactions off-chain. Optimistic Rollup, as the name1. Abstract Rollup is a scalability solution for Ethereum Layer 2, aiming to enhance the transaction throughput of Ethereum by processing transactions off-chain. Optimistic Rollup, as the name
新手学院/Market Insights/Hot Topic Analysis/Optimistic Rollup: A Technical Analysis

Optimistic Rollup: A Technical Analysis

Sep 21, 2026MEXC
7 分钟


1. Abstract


Rollup is a scalability solution for Ethereum Layer 2, aiming to enhance the transaction throughput of Ethereum by processing transactions off-chain. Optimistic Rollup, as the name suggests, employs an optimistic mechanism. Optimistic Rollup assumes that all transactions on Layer 2 are valid and compresses multiple transactions into a single submission to Ethereum. After the submission, there is a one-week period during which any user on the chain can challenge the authenticity of transactions. If fraud is detected during the state update, the challenger can receive a reward. Undoubtedly, Optimistic Rollup is the most practical and innovative solution for Ethereum Layer 2, and its technical details deserve further exploration. This article will provide a brief analysis of the implementation details of Optimistic Rollup and delve into its technical principles.

2. How Optimistic Rollup Works


On Optimistic Rollup Layer 2, user transactions are sent to the operators of Optimistic Rollup nodes. These nodes act as "validators" and "aggregators," responsible for aggregating and validating transactions. They compress multiple transactions' data into a single transaction, which, after compression, enters the transaction pool of Ethereum Layer 1, just like any other transaction. Finally, the nodes will receive and process the transactions and publish blocks on the Ethereum blockchain. Anyone can become an Optimistic Rollup node, but similar to the Proof-of-Stake (PoS) mechanism, nodes are required to provide a security deposit to the Ethereum network as a guarantee of their integrity.

During block submission, the nodes do not verify the legitimacy of state transitions. However, they provide a one-week "fraud proof" challenge period for the block. If no node or user challenges the legitimacy of the block during this period, the block will be confirmed. If a successful "fraud proof" challenge is made, the node that published the block will lose its security deposit. To incentivize the detection of fraudulent behavior, the security deposit is rewarded to the user who successfully proves the fraud. Through this approach, Optimistic Rollup utilizes the incentive measures of cryptographic economics to ensure the honesty and reliability of nodes.

3. How Data Compression is Achieved


A regular Ethereum transaction, such as sending ETH, typically consumes around 110 bytes. However, sending ETH on Optimistic Rollup only consumes approximately 12 bytes. To achieve this, Optimistic Rollup employs simpler advanced encoding techniques.

In Optimistic Rollup Layer 2 transactions, the nonce is completely omitted and instead recovered from the pre-state. Gas-related information like Gasprice and Gas is moved out of Layer 2 transactions. The To and From fields no longer require Ethereum addresses; instead, a subtree is added to the state to store the mapping of indices to addresses. Value can be stored using scientific notation, requiring only 3 digits for transfers. As for signatures, transactions within a batch can be aggregated using BLS aggregate signatures, reducing the storage consumption for each individual transaction signature. This aggregated signature can batch-check the entire set of messages and senders. Additionally, these transaction data are stored in the Calldata field on-chain, which has a relatively low gas cost.

The uploaded data includes not only the aforementioned transaction data and content, but also the Merkle tree root before and after batch transactions (including state data such as account, balance, and contract code, thus known as the state root). It also includes data used to prove (or verify) the legitimacy of state transitions. These compression techniques are crucial for achieving scalability using Optimistic Rollup. Currently, after compression, Optimistic Rollup can provide throughput that is over 30 times higher than Ethereum.

4. Submitting Data to Ethereum


Optimistic Rollup deploys a specific smart contract called the Rollup contract on Ethereum Layer 1. This contract is responsible for managing the state of the Rollup, including tracking user balances, handling deposits, withdrawals, and dispute resolution. In Optimistic Rollup, transactions are collected and aggregated by nodes off-chain, bundling multiple transactions into a "Rollup block." This block contains transaction content and the Merkle tree root of the new account state.

Later on, nodes publish the aggregated data as calldata on Ethereum. Calldata is an unmodifiable and non-persistent area within smart contracts, similar to internal storage. As part of the history log of blockchain, calldata is not stored as part of Ethereum's state. As calldata doesn't involve any portion of Ethereum's state, it is more cost-effective to store data on-chain using calldata.

5. State Commitment


As mentioned before, the uploaded data includes not only the transaction content but also the Merkle tree root before and after the transaction. The Merkle tree root represents the Optimistic Rollup state at any given point in time, including accounts, balances, contract codes, etc. It is also known as the "state tree" and serves as the organizational form of the Optimistic Rollup state. The leaf nodes of the Merkle tree represent the account states, and the root node represents the final value. Changes in the Layer 2 transactions of Optimistic Rollup result in updates to the account states, which in turn affect the information of the leaf nodes, ultimately leading to changes in the root hash value. The Layer 2 operator maintains the state tree of Layer 2 accounts locally, recording the root hash values before and after the batch transactions occur, and uploads this root hash value when uploading the batch transactions.

This Merkle tree root (state root) references the latest state of the Rollup, undergoes hashing, and is stored in the Rollup contract. Each on-chain state transition generates a new Rollup state, and nodes submit this state by computing the new state root.

When nodes publish a block, they need to submit both the old state root and the new state root. If the old state root matches the existing state root in the on-chain contract, the latter is discarded and replaced with the new state root. Nodes also need to submit the Merkle tree root for the batch of transactions itself. This allows anyone to prove that the transactions are included in the block by providing a Merkle tree proof. The Merkle tree root is crucial for proving the state changes in Optimistic Rollup.

6. Fraud Proof


Optimistic Rollup allows anyone to provide transaction information and state transition information, and publish blocks without providing validity proofs. To ensure the security of the Ethereum blockchain, Optimistic Rollup has established a one-week window during which users can raise doubts about the blocks (including state transitions and other information).

If someone raises a doubt, the Optimistic Rollup protocol initiates fraud proof computation. By replaying the transactions that resulted in state transitions on the chain, a new state root is computed. This computed state root is then compared with the state root proposed by the sequencer. If other nodes or users discover a discrepancy between the final block state and the state proposed by the node, the fraud proof challenge is successful, and the state transition is canceled. At the same time, the challenging node is penalized, and their bond is confiscated and awarded to the challenger.

Re-executing transactions on Ethereum to detect fraud requires publishing state commitments for individual transactions and adding data that must be published on-chain. Replaying transactions also incurs significant gas costs. Currently, the challenge period for Optimistic Rollup is one week, but due to capital efficiency concerns, the community is actively discussing whether to shorten the challenge period.

7. OVM Virtual Machine


Optimistic Rollup not only supports the scalability of Ethereum but also incorporates the entire functionality of Ethereum smart contracts into the Layer2 framework, providing a Turing-complete OVM virtual machine for the development and deployment of dApps.

The OVM virtual machine is a feature-complete execution environment that is fully compatible with the Ethereum EVM virtual machine and designed for Layer2 systems. With the OVM virtual machine, developers can perform all Ethereum on-chain operations on the Rollup chain and interact with the blockchain through APIs. Additionally, the OVM virtual machine simplifies the process of porting dApps to Layer2. Instead of deploying various Layer2 scaling solutions, project teams can simply integrate with OVM and utilize its various Layer2 structures.

8. Conclusion


There are two Layer2 networks developed based on the Optimistic Rollup protocol: Optimism and Arbitrum. Currently, Optimism and Arbitrum are the largest Layer 2 ecosystems in the Ethereum space, with a total locked value of $4 billion and still experiencing significant growth. Many well-known projects have also joined the Optimistic Rollup camp, such as UniSwap, SushiSwap, and others.

However, Optimistic Rollup is not the only player on the field and faces competition from ZK Rollup. As mentioned earlier, Optimistic Rollup relies on fraud proofs, where the system optimistically believes in the correctness of transaction data and ensures transaction validity through the economic logic of fraud challenges. On the other hand, ZK Rollup is a scalability solution based on zero-knowledge proofs, where off-chain transactions are processed in batches and cryptographic validity proofs are generated to verify the authenticity of each batch of transactions. The superiority of one over the other requires further examination over a longer period of time.

市场机遇
Lagrange 图标
Lagrange实时价格 (LA)
$0.07351
$0.07351$0.07351
-0.58%
USD
Lagrange (LA) 实时价格图表

热门新闻

查看更多
疲软就业报告缓解美联储加息担忧,但AI概念股依然下跌:交易员接下来该关注什么

疲软就业报告缓解美联储加息担忧,但AI概念股依然下跌:交易员接下来该关注什么

美国6月就业报告发出了明确的经济放缓信号,数据不及预期,降低了对美联储加息的担忧。 尽管美国国债收益率下降,但AI和科技股依然下跌,这证明宏观利率环境的改善已不再是高估值科技股的绝对催化剂。 比特币和黄金有望从美元走弱中获益,但需要更多确认信号来维持涨势。 交易员应将注意力从美联储政策转向第二季度的企业财报质量,以此来验证当前市场的溢价估值。

Bitget 将退出日本:面向日本居民的服务将于 2026 年 12 月 31 日终止

Bitget 将退出日本:面向日本居民的服务将于 2026 年 12 月 31 日终止

Bitget 将于 2026 年 12 月 31 日终止对日本用户的服务。受影响的用户必须在截止日期前平仓并提取资产。

万事达完成对BVNK的收购,交易金额高达18亿美元——稳定币进入全球支付核心

万事达完成对BVNK的收购,交易金额高达18亿美元——稳定币进入全球支付核心

万事达于2026年8月3日完成了对稳定币基础设施提供商BVNK的收购,此前已于三月宣布该交易。

DEX对CEX现货交易量比率达24%,中心化交易所活动减弱

DEX对CEX现货交易量比率达24%,中心化交易所活动减弱

根据 The Block 的当前数据系列,2026年7月,去中心化交易所现货交易量与中心化交易所现货交易量之比达到24.14%。该数字并不意味着 DEX 控制了合并现货市场的24.14%:它意味着 DEX 交易量相当于数据集中包含的 CEX 交易量的24.14%。与此同时,DEX 现货交易量环比下降约26%,至约1307.7亿美元,为近两年来最低水平。

相关文章

查看更多
MEXC 流动性有多深?订单簿深度、滑点与第三方报告数据解析

MEXC 流动性有多深?订单簿深度、滑点与第三方报告数据解析

您点击下单时的价格与实际成交的价格之间差多少,取决于流动性。本页按照第三方研究机构的衡量方式追踪 MEXC 的流动性:一是中间价上下窄区间内的订单簿(Order Book)深度,二是以实际规模模拟下单时产生的滑点(Slippage)。本页是一份持续更新的记录,收录自 2026 年 5 月以来每一份 TokenInsight 流动性报告中 MEXC 的主要结果,也包括 MEXC 排名第二或第三的项目

加息落地,BTC不跌反涨创八个月新高——利空出尽还是轧空狂欢?| MEXC Alpha Trader 投研周报

加息落地,BTC不跌反涨创八个月新高——利空出尽还是轧空狂欢?| MEXC Alpha Trader 投研周报

2026年9月第3周统计周期:2026年9月16日 – 9月22日数据截止:2026年9月22日核心叙事过去一周,加密市场经历了 “决议前承压——决议落地——强势反弹” 的完整周期。比特币从决议前的76,000-78,000美元区间起步,在美联储宣布加息后短暂下探,随后在财政部长债回购与ETF巨额流入的推动下强势拉升,9月21日触及 87,395美元,为2026年1月以来最高水平,单周涨幅约11%

CPI超预期引爆“加息押注”,美债收益率破5%创19年新高——市场在定价什么?| MEXC Alpha Trader 投研周报

CPI超预期引爆“加息押注”,美债收益率破5%创19年新高——市场在定价什么?| MEXC Alpha Trader 投研周报

2026年9月第2周统计周期:2026年9月9日 – 9月15日数据截止:2026年9月15日核心叙事过去一周,加密市场在通胀数据、加息预期与地缘政治的三重压制下持续承压。BTC从78,000美元附近起步,在CPI超预期与美债收益率突破5%的双重压制下逐步走低,9月11日一度下探至76,000美元附近,随后反弹至79,800美元。截至9月15日,比特币在77,000-78,000美元区间弱势整理。

MEXC Alpha Trader 投研周报 | 非农与ADP罕见背离,市场剧烈拉锯——加息还是暂停?

MEXC Alpha Trader 投研周报 | 非农与ADP罕见背离,市场剧烈拉锯——加息还是暂停?

2026年9月第1周统计周期:2026年9月2日 – 9月8日数据截止:2026年9月8日核心叙事过去一周,加密市场在宏观数据与地缘政治的双重驱动下剧烈拉锯。BTC在76,000-82,000美元区间宽幅震荡,最终回落至78,000美元附近,周初的恐慌情绪与周中的强劲反弹交替上演。非农“爆表”重燃加息预期,9月加息概率升至60%。 9月4日,美国劳工统计局公布8月非农就业报告——新增非农就业16.

注册MEXC账号
注册 & 获得高达10,000 USDT奖金
你的华尔街DNA是什么?
你的华尔街DNA是什么?你的华尔街DNA是什么?
6种投资人格测试,100%中奖——$30,000等值NVDAX等你来拿!

加入 MEXC 社区

通过我们的官方 Telegram 频道,实时获取最新上币、活动和动态。

25k+ 位成员