Log in

Research Report

Layer Cake

Updated: Aug 12, 2024
Published: Mar 1, 2022
0
Share:

The time has come.

Post Feature Image

"Rollups are primed to be Ethereum's major scalability solution for the foreseeable future.”
Vitalik Buterin

TLDR

  • Rollups are the next generation of Layer 2 technology that will scale Ethereum to its full potential.
  • Transactions that are sent to the Ethereum network are executed off-chain by Rollups and sent back to Ethereum allowing for greater scalability (increased throughput & cheaper gas fees).
  • Two types of Rollups: Optimistic and ZK Rollups.
  • Optimistic and ZK Rollups are different and will work in parallel with Ethereum but one will always seem to outshine the other.
  • Total value locked in Rollups smart contracts $4.86 billion.
Many Layer 2s are competing for the throne - read below for our top picks.

Disclaimer: Not financial nor investment advice. Any capital-related decisions you make is your full responsibility and only you are accountable for the results.
aligncenter size-full wp-image-201965
“You're born, you take shit. You get out in the world, you take more shit. You climb a little higher, you take less shit. Till one day you're up in the rarefied atmosphere and you've forgotten what shit even looks like. Welcome to the layer cake son.”
Villians Wiki who plays the role of “Eddie Temple” in the movie “Layer Cake”.

The link between the above quote and the article is that “in Crypto, those who want to go higher up must increase their cognizance about this market, how it works and how to take advantage of the opportunities. In this case, understanding the models of the different types of L2s and where they are in their development. This puts you ahead of most people because you’d already know who’s winning over the short term and who’s winning over the long term.

This Research Report is longer and slightly more complex than others as we go all of the details relating to Layer 2s for a full explanation. We explore the different types, pros and cons, their mechanisms and on that basis we conclude which are likely to dominate.

What are Rollups?

Rollups execute transactions outside of the main Ethereum network and send the final data back to Ethereum once done for it to be entered into the immutable ledger.

Rollups are secured by native Ethereum security because transaction data is included in Layer 1 blocks. When it comes to scaling Ethereum through Rollups, majority of the data is executed off-chain in a “Layer 2 Chain” while preserving some data on-chain for verification. Rollups deploy smart contracts on-chain that are responsible for deposits, withdrawals and for verifying proofs. By executing transactions off-chain, less gas is consumed, resulting in lower gas fees and higher throughput (i.e. better scalability).

wp-image-216991 aligncenter

 

Rollups Mechanics

There is a smart contract on-chain which maintains the state of each Rollup (meaning, the account balances, contract code, etc, that are "inside" the Rollup).

aligncenter size-full wp-image-201963

  1. Transactions that are sent to Ethereum are executed on L2 instead of L1 (off-chain). Data is taken from the main chain, compressed and rolled back to the main chain, hence the name Rollups.
  2. Any verifier can publish a batch on-chain from L2 to L1. A batch is a collection of transactions in a highly compressed form together with the previous state and the new state of the on-chain smart contract.
  3. Finally, the on-chain smart contract checks that the previous state in the batch matches its current state. If it does, the batch is stored on-chain, updating the state of the smart contract.
These compression tricks are critical to Rollup scalability. Without them, Rollups wouldn’t be an improvement over the main chain's scalability. Each batch can contain up to 62,500 transactions, so each Rollup would be able to scale 1000-4000 TPS compared to Ethereum 15 TPS on a good day. Rollups post the minimum amount of data on L1 that is required to validate transactions - replacing data with computation. Moreover, Rollups are completely general-purpose, meaning that anyone can submit a batch on-chain and you can even run an EVM inside a Rollup, allowing existing Ethereum dApps to transition to Rollups with little to no recoding. The overall user experience on L2s will be flawless and entirely different from using Ethereum on L1. Because transactions are processed off-chain, the least amount of gas is used. A transaction on Ethereum Layer 1 would cost about $15. In comparison to Layer 2 Rollups, a transaction would cost about $0.5.

That's all there is to it! except for one crucial detail: how do you know if the batch stored has the correct information (post-state)? This question is crucial since there are two distinct answers to the problem, which results in two distinct Rollup flavors!

aligncenter size-full wp-image-201962

Optimistic Rollups

Optimistic Rollups assume that all transactions are valid and submit batches without performing any computation whatsoever, hence the name Optimistic which can lead to significant improvements in scalability. However, they include a challenge period during which anyone can dispute the legitimacy of the data contained in a batch.

If a fraudulent transaction is detected, the Rollup executes a so called fraud proof and runs the correct transaction computation using the data available on Layer 1, this process requires gas. To ensure that validators are incentivized to process only legitimate transaction data, validators are required to stake ETH. If they perform their duties diligently they receive staking rewards, but if a validator submits a fraudulent transaction to the main Ethereum chain, their stake is burned.

Therefore withdrawals through Optimistic Rollups from Layer 2 to Layer 1 would take up to 1 week because of the time it takes to generate a fraud proof.

ZK Rollups

ZK Rollups aim to ensure that everyone behaves in good faith, whereas Optimistic Rollups presume that everyone acts in good faith. ZK Rollups bundle hundreds of transactions into a single batch, a cryptographic proof know as ZK-SNARK is generated for each batch. The SNARK proof or the validity proof is then stored on-chain. This strategy reduces the size of the data in each block because you are replacing data with proofs (much much smaller) and as a result, reducing time and gas cost. The SNARK proof can be quickly verified on-chain, regardless of how large the computation is.

In contrast to optimistic rollups, ZK Rollups do not require a challenge period because the validity proof has already validated the integrity of transaction data. As a result, this type allows for very quick withdrawals and instant finality. Therefore, ZK Rollups are ideal for exchanges and other dApps that require simple transactions.

aligncenter size-full wp-image-201960

The tweet is simply explaining the difference between the 2 mechanisms of Rollups. A ZK Rollup would proof that a batch has the correct post-state while an Optimistic Rollup would assume that a batch has the correct post-state.

Side note

  • EVM-compatible: Ethereum smart contracts can be deployed on the compatible chain.
  • EVM-equivalence: complete alignment with the Ethereum virtual machine (EVM).
EVM compatibility is not the same as EVM equivalence. Settling for mere compatibility means that you are forced to modify, or even completely reimplement, lower-level code that Ethereum’s supporting infrastructure also relies on.

Optimistic vs ZK

aligncenter size-full wp-image-203105

Privacy

Another aspect we'd like to mention is how each Rollup handles privacy. The technical difference is that ZK Rollups, as the name implies, use zero knowledge proofs. Which is a type of cryptography that allows the proof of data without revealing the data itself. ZK-SNARKS stand for “Zero-Knowledge Succinct Non-Interactive Argument of Knowledge”. “Recursive proofs” refers to the act of verifying a proof inside another proof, verifying a SNARK inside of another SNARK. This is a handy compression technique that allows for greater efficiency and reduced privacy costs. Optimistic Rollups are incapable of this innovation.

aligncenter size-full wp-image-203109

SNARK proof verified inside another SNARK proof - just like Mina Protocol.

Security: Major Factor for Adoption

Security is the one of the key aspects in the success of every Blockchain. Many L2 solutions have attempted to scale Ethereum, they function, to be sure, but security was still jeopardized because these solutions relied on their own consensus rather than Ethereum's. Security is not at risk with Rollups. Let us explain why:
  • Rollups store batches on-chain, this allows Rollups to inherit the full security of Ethereum.
  • If you ever had funds on Solana or Polygon and the network was down for an unusually long period of time then your funds would be stuck and there’s nothing you can do about it. Mainnet Rollup smart contracts contain "escape mechanisms” that allow users to exit Rollups with their funds back to mainnet even if the Rollup network is offline.
  • When using a Rollup with a centralized validator you are compromising on trust and censorship-resistance, but not security. Centralized validators cannot steal your funds and you can always withdraw back to mainnet Ethereum.
Ethereum exists to provide trust and resolution. Ethereum will always solve any problems that the Rollup chain encounters.

Ethereum Sharding Upgrade

Sharding refers to splitting the entire Ethereum network into multiple chains called “shards”, which will reduce network congestion and increase transaction throughput. Each shard would have its own state, which would include a distinct set of account balances and smart contracts.

Initially, there will be 64 "shard chains." Eventually, there will be 1,024 “Shard Chains”. Shard Chains provide extra, cheaper, storage layers for Rollups to store data. Rollups that use sharded data can process up to 100k TPS, and possibly even more in the future. So it’s Rollups on top of Shard Chains that will be the ultimate scaling solution. Of course, this is such a long term process and is still in development.

alignnone wp-image-216993

The Rollup King

The transition to Rollups is still at an extremely early stage, with the most activity still seen on Ethereum mainnet and a handful of alternative Layer 1s.

Optimistic and ZK Rollups will be able to run at the same time and can interact with the Ethereum Blockchain, one will be more favorable than the other in certain dApps. They are versatile and can easily be upgraded or changed without affecting the fundamentals of the underlying blockchain they were built to interact with. Rollups also enable redeployment of all the existing Ethereum smart contracts to a Rollup with little or no change.

In the short term as of today, protocols seem to favor Optimistic Rollups simply because they are fully EVM compatible unlike ZK which are still in development to be fully verified on EVM. It is easier to transport an existing Ethereum dApp over to Optimsitic Rollups rather than ZK Rollups because ZK are more complex. Exisitng dApps have already migrated to Optimistic Rollups. Users can use Uniswap, Sushiswap, Synthetix and much more protocols on Optimisitc Rollups Layer-2s which explains why Optimisitc Rollups have a TVL of $3.46 billion compared to $1.42 billion for ZK Rollups across all Layer 2s.

alignnone wp-image-216996

However, if we were to pick one for the medium-to-long term, it would undoubtedly be ZK ROLLUPS! Simply said, ZK is more scalable, secure, and cheap. ZK Rollups provide immediate on-chain verification and instant withdrawals, which are critical for bridges. ZK-SNARKs tech is also a huge deal, and one that will very probably be incorporated in Crypto in the long run due to its privacy and scalability characteristics, as certain chains have already begun to do so.

Top Contenders

To be clear, we selected these projects based on their core qualities. These picks aren't meant to be considered as investment advice. Other investment aspects were not considered during the selection of these projects.

Arbitrium

With $1.35 billion in TVL, it is now the most used Layer 2. Arbitrium is an Optimistic Rollup that acts as a bridge for the Ethereum Ecosystem where users can deposit and withdraw assets to enjoy a wonderful experience of fast transactions and cheap gas fees. It comes with its own Arbitrium virtual machine (AVM) where dApps from Ethereum such as Uniswap can migrate to Arbitrium. When withdrawing your funds back to Ethereum, the process can take up to 1-2 weeks because validators need to check for fraudulent transactions and provide a fraud proof. But it appears that users still enjoy using Arbitrum for it's wonderful user experience and TVL is proving that (steadily rising). Arbitrium does not have a token yet.

Optimism (OP)

Optimism is an Optimistic Rollup that is set to be the main challenger for Arbitrium. After a delay in it’s launch, Arbitrium used the opportunity and launched before Optimism, attracting more capital. With $302.18 million in TVL offering fast transactions and cheap gas fees. Optimism is EVM-equivalent and even has it’s own virtual machine-OVM (optimistic virtual machine). Unlike Arbitrium, which executes certain parts of transactions in multiple rounds, Optimism executes the whole transactions in one round. The withdrawal period can still take up to one week, however it is shorter than Arbitrium. Optimism has it's own native token OP.

ZkSync

EVM-compatible scaling Layer 2 that leverages ZK Rollups and supports ETH and ERC-20 tokens. ZkSync is still relatively new and has $80.19 million in TVL. ZkSync is very popular even though it does not have a token yet. Offering fast transactions and cheap gas fees with instant withdrawals. Users can bridge over to zkSync from Ethereum, however, most dApps on zkSync are not live which explains the relatively low TVL compared to other Rollups. ZkSync does not have a token yet.

StarkWare Ecosystem

The StarkWare Ecosystem consists of two scaling solutions that rely on ZK Rollups for scalability. Instead of a SNARK, the validity proof generated is known as a STARK (another type of zero knowledge technology). STARKS differ from SNARKS in that they do not require a trusted setup, but their proofs are larger than SNARKS. StarkWare does not have a token yet.
  • StarkEx: ZK Rollup Layer 2 scaling engine, that allows a specific range of dApps (NFTs and decentralized exchanges) to be built on the StarkEx system that is live on the Ethereum mainnet. The TVL across StarkEx dApps (DeversiFi, dYdX, Immutable X and Sorare) is $1.047 billion. $954 million from a total of $1.047 billion TVL across StarkEx is secured by dYdX (91%).
  • StarkNet: General-purpose ZK Rollup that operates as an L2 over the Ethereum network. StarkNet is not application specific unlike StarkEx. Therefore, anyone can deploy a wide range of dApps on StarkNet and still be fully secured by the Ethereum consensus. StarkNet has no TVL so far because dApps are soon to be deployed (no bridges with other chains at the moment). What makes StarkNet unqiue is that it allows other dApps from StarkEx such as dYdX to migrate to StarkNet allowing for greater scalability.
Bridging over to Ethereum can now be done through StarkGate, which is a bridge between Ethereum and Starknet. StarkGate is still in an experimental stage and around 200 ETH ($400k) have been bridged over to StarkNet so far.

alignnone wp-image-217285

Final Words

We have covered the mechanics of Rollups in great detail including the differences between Optimistic and ZK Rollups, which Rollup will have an edge over the other in the short and long term and which assets are quite likely to dominate in the Layer 2 Ecosystem. Arbitrum, Optimism, StarkWare and zkSync are the chains we believe that will have the most upside in this sector. Optimism recently announced it's native token OP for governance and decentralisation which was airdropped to frequent users and will launch in the market in upcoming months being the first one to do so. The other L2s that we are bullish on do not have tokens yet. The best approach when it comes to L2s, is to use them to qualify for an airdrop. All details on how to use Layer 2s and how to potentially be eligible for an airdrop is covered in the next report.

100% Success Money Back Guarantee

If our approach doesn’t outperform the overall crypto market during your subscription, we’ll give you a full refund of your membership. No questions asked. For quarterly and monthly subscribers this is applicable once your subscription runs for 6 consecutive months.

Terms & Conditions apply

Star

Trusted by 300,000+ traders

Take your next step towards crypto success

Save 50%

$799/year

Get everything you need to actively manage your portfolio and stay ahead. Ideal for investors seeking regular guidance and access to tools that help make informed decisions.

VisaCardImageMsCardImageCoinbaseCardImageSolanaCardImage

For your security, all orders are processed on a secured server.

What’s included in Pro:

  • Success Guarantee, if we don’t outperform the market, you get 100% back, no questions asked

  • 24/7 access to experts with 50+ years’ experience

  • All of our top token picks for 2025

  • Our latest memecoins pick with 50X potential

  • On hand technical analysis on any token of your choice

  • Weekly livestreams & ask us anything with the team

  • Daily insights on Macro, Mechanics, and On-chain

  • Curated list of top upcoming airdrops (free money)

Our track record speaks for itself

With over 2.4M tokens and widespread misinformation in crypto, we cut
through the noise and consistently find winning assets.

/images/advertorial/corpcomm3.webp
/images/advertorial/corpcomm4.webp
/images/advertorial/corpcomm5.webp

Frequently Asked Questions

Yes. We've consistently identified winners across multiple cycles. Bitcoin under $1,000, Ethereum under $70, Solana under $10, WIF from $0.003 to $5, PopCat from $0.004 to $2, SPX blasting past $1.70, and our latest pick has already 200X'd since June 2025. Everything is timestamped and public record.

No. When we founded Cryptonary in 2017 the market was new to everyone. We intentionally created content that was easy to understand and actionable. That foundational principle is the crux of Cryptonary. Taking complex ideas and opportunities and presenting them in a way a 10 year old could understand.

Signal vs noise. We filter out 99.9% of garbage projects, provide data backed analysis, and have a proven track record of finding winners. Not to mention since Cryptonary's inception in 2017 we have never taken investment, sponsorship or partnership. Compare this to pretty much everyone else, no track record, and a long list of partnerships that cloud judgements.

We share highly sensitive, time-critical research. Once it's out, it can't be "returned." That's why membership is annual only. Crypto success takes time and commitment. If someone is not willing to invest 12 months into their future, there is no place for them at Cryptonary.

Yes. You will have 24/7 to the team that bought you BTC at $1,000, ETH at $70, and SOL at $10. Through our community chats, live Q&As, and member only channels, you can ask questions and interact directly with the team. Our team has over 50 years of combined experience which you can tap into every single day.

Daily. We provide real-time updates, weekly reports, emergency alerts, and live Q&As when the markets move fast. In crypto, the market moves fast, in Cryptonary, we move faster.

If our approach to the market doesn’t beat the overall crypto market during your subscription, we’ll give you a full refund of your membership fee. No questions asked. For quarterly and monthly subscribers this is applicable once your subscription runs for 6 consecutive months.

Recommended from Cryptonary
The Crypto Handicap: CZ and Binance vs. Hyperliquid
Research Report
The Crypto Handicap: CZ and Binance...Earlier this month, we called BNB as the asset most likely to outperform BTC. This week, we’re calli...
9 min read
Oct 20, 2025
State of the Market: October 2025
PRO
Research Report
State of the Market: October 2025Crypto just endured one of the largest liquidation events in its history, with more than $19B in pos...
23 min read
Oct 15, 2025
CPro picks update: Diversifying with major asset + trade setup
PRO
Research Report
CPro picks update: Diversifying wit...You can debate decentralisation, you can question regulation, but you can't ignore performance. This...
16 min read
Oct 9, 2025