What are Rollups in Blockchain Networks šŸ£

Photo by shutter_speed / Unsplash

Increasing the transactional throughput of public blockchains is a key focus for blockchain researchers today. EIP-4844 just came out, and it's old news that rollups will play a huge role in the future of scaling Ethereum. Ethereum's co-founder Vitalik Buterin described the concept of rollups back in 2014. Last year, Vitalik claimed rollups to be the ā€œonly choice" for making gas fees more affordable.

Rollups offer faster and cheaper transactions for dApp developers and their customers. This post summarizes my research on rollups, and a few things dApp developers should know when picking the right blockchain protocol.

Image.jpeg

Why do we need rollups? šŸ›¼

Rollups are in the short and medium-term, and possibly in the long term, the only trustless scaling solution for Ethereum.

Thanks Vitalik for that intro. If youā€™re familiar with Ethereum, you also know about the current gas prices crises. Basically, if you transfer coins on Ethereum, be prepared to fork over up to $10 in fees to send $1. The last sentence may not be an exaggeration. šŸ˜”

Rollups are a layer 2 scaling solution to drastically reduce the gas price on the Ethereum mainnet. Rollups are supposed to provide a way to reduce the costs and latency of decentralized applications (dApps) for users and developers.

In layer 2 scaling solutions, web3 apps send transactions to nodes that are part of the layer 2 network, then the network batches transactions into groups before anchoring (publishing) them to layer 1, after which they are secured by layer 1 since they are publicly verifiable and cannot be altered. Thus rollups offer faster execution by executing transactions off-chain and publishing the proof of transactions on-chain.

Rollups move computation (and state storage) off-chain, but keep some data per transaction on-chain.

A rolledup transaction could include tens of thousands of transactions, which means tens of thousands of transactions can be recorded on the mainchain for the price of one. Using compression algorithms, the more layer 2 transactions you can bundle in a single layer 1 transaction, the cheaper it is to store proof of transactions.

Jag Sidhu writes ā€œsome Ethereum engineers got these individual account updates down to a few bytes (8ā€“12 bytes depending on the implementation) which means that a block with 1 megabyte of bandwidth would be able to roughly process 83k ā€” 125k account adjustments per block and around 5500 to 8300 TPS theoretically assuming 15 second block times.ā€
Image.jpeg

Image source

Types of rollups

The paper subtly categorizes rollups into two prominent categories: Arbitrum and Optimism with fees that are ~3-8x lower gas fees than L1 and ZK-rollups, with ~40-100x lower gas fees than Ethereum mainnet.

So, whatā€™s the difference between Arbitrum and Optimism that provide single-digit gains than ZK-rollups with triple-digit gains? Thatā€™s because there are two types of layer 2 scaling solutions: Optimistic and ZK.

Optimistic rollups

Arbitrium and Optimism are layer 2 protocols that use ā€œoptimistic rollupā€ (OR) to scale Ethereum. An optimistic rollup network assumes that transactions are valid by default and only performs calculations, via a fraud proof, in the event of a challenge.

In other words, when an application transacts on an optimistic rollup network like Arbitrum, the actual transfer of funds (from accountA to accountB) happens on the Arbitrum. The transaction is then published on Ethereum mainnet.

Remember that an optimistic rollup network assumes all transactions are valid, at least initially. So what happens if a transaction in invalid?

This is indeed a problem with optimistic rollups. Because, every transaction is assumed valid, optimistic rollups have a withdrawal time (7-14 days) constraints while the network waits for someone else to challenge the state of the network.

Optimistic Rollups rely on fraud proofs to avoid re-computations. The state is proposed to Ethereum by a ā€œbondedā€ actor. Anyone who wants to challenge the actor may claim a bounty by proving that the state update is inaccurate. To accomplish this, the challenger must provide the data required by the smart contract to prove the inaccuracy. This thread goes over the key difference between Optimism and Arbitrum fraud proof mechanism.

ZK-rollups donā€™t have the withdrawal time constraint because they include a validity proof.

ZK Rollups

For Ethereum ā€” and EVM compatible chains ā€” to become worldā€™s next distributed computing platform, gas prices have to be massively reduced, until it is cheaper to do things at internet scale. ZK rollups (ZKR) promise could be the key to achieving that level of scalability.

ZK rollups like zkSync are popular because they donā€™t have the withdrawal time problem that optimistic rollups do. Withdrawal times in zkSync, a ZK rollup live on Ethereum mainnet, are 10 minutes to 7 hours during low usage. Moreover, ZK rollups gets cheaper and faster as the usage increases, so in the future things will become faster.

But, what does ZK stand for?

ZK rollups are based on the concept of provers and verifiers. ZK stands for Zero Knowledge.

ZKR "roll-up" off-chain transactions and generate a cryptographic proof known as a zk-SNARK. The acronym zk-SNARK stands for ā€œZero-Knowledge Succinct Non-Interactive Argument of Knowledge". The zk-SNARK is the proof of validity of the transactions in the form of a hash and is eventually placed on the main chain.

A special ZK Rollup smart contract, which resides on Layer 1, maintains the status of the transfers made on rollup chain. The status can only be updated with a validity card; the zk-SNARK. The zk-SNARK is a hash that represents the blockchain's validity status.

ā€œZero-knowledgeā€ proofs allow one party (the prover) to prove to another (the verifier) that a statement is true without revealing any information beyond the validity of the statement itself. For example, given the hash of a random number, the prover could convince the verifier that there indeed exists a number with this hash value, while disclosing what that random number is.

In a zero-knowledge ā€œProof of Knowledgeā€ the prover can convince the verifier not only that the number exists, but that they in fact know such a number ā€“ again, without revealing any information about the number.

zk-SNARKā€™s succinct proofs are only a few hundred bytes and can be verified within a few milliseconds. The ZK proof mathematically proves that no fraud has occurred.

zkSync is a ZKR live on Ethereum mainnet. Immutable X and Loopring also use ZKR. Zcash is the first widespread application of zk-SNARKs. Polygon is focused on Zero-Knowledge (ZK) cryptography as the end game for blockchain scaling. There's a lot of innovation happening in this space. L2beat.com provides details about Ethereum layer 2 scaling solutions.

ZKR core components

ZKRs execute transactions on sidechain and roll them on the mainchain. ZKR use two transactors and relayers to achieve this.

  • Transactor create and broadcast transaction data (indexed address, value, network fee, and nonce) to the network. Transactor corresponds to an external account on Ethereum. Smart contracts then record addresses to one Merkle Tree and the transaction value to another.
  • Relayers collect a large number of transactions creating rollups. Relayers generate the ZK proof that creates the blockchain state before and after each transaction. The resulting changes reach the mainchain in a verifiable hash. Although anyone can become a relayer, you must first stake their cryptocurrency in a smart contract to ensure honesty.
This ā€œstateā€ is essentially a database which represents new balances and adjustments to accounts as users transact with their accounts inside of the rollup

How do rollups reduce gas?

Rollups donā€™t actually reduce the gas on Ethereum. Recall that a rollup is a layer 2 sidechain; when using a rollup, you wonā€™t be sending transactions on Ethereum mainnet; instead transactions will be submitted to the L2.

Users of a dApp running the ZK-Rollup scheme will pay less in transaction fees.

Are Optimistic Rollups a temporary solution?

This seems to be a common question in the community. If ZKR are faster, then why even bother with OR?

Optimistic rollups have a first-mover advantage. First of all, the main reason why OR were more popular in the past was because until recently ZKRs didn't support Solidity smart contracts. ZKRs have to generate validation proofs, and the earliest iterations were not EVM and Solidity compatible. That changed in 2021. Now you can take your Solidity smart contract and deploy it on a ZKR with a few (relatively minor) changes.

On Feb 2022, zkSync 2.0 became available on Ethereumā€™s testnet. zkEVM is a virtual machine that executes smart contracts in a way that is compatible with zero-knowledge-proof computation.

Only time will tell who wins.

How will the merge affect this?

Simply put, it will not. Iā€™ll provide a detailed answer in another post.

Topics we skipped

In optimistic rollups, when transactions are ready to be rolled up, a sequencer is a specially designated full node that can control the ordering of transactions. Sequencers bundle transactions and submit both the transaction data and the new L2 state root to L1. Kyle Charbonnet has explained Optimism's optimistic rollup implementation in detail here.

ZK-STARK (Zero-Knowledge Scalable Transparent ARguments of Knowledge). The proof system used in ZK-SNARK requires a trusted party, or parties, to initially set up the ZK proof system. A dishonest trusted party could compromise the privacy of the system. ZK-STARKS improve on this technology by removing the need for a trusted setup.

Conclusion

Blockchain is a fast-moving space. Millions of dollars continue to be funneled into building scalable future blockchain networks. Itā€™s hard to tell if ZKRs will be the silver bullet to address Ethereumā€™s data availability and scaling problems. In the short term, it does look like ZKRs are a step in the right direction.


References

DeFi Explained: ZK Rollups

What are ZK-Rollups and why they're the best investment you can make in 2022.

The Ultimate Guide to Rollups

February 20, 2021: Optimistic vs ZK-Rollups, ELI5 šŸ§’šŸ§‘ā€šŸ«

Rollups ā€“ The Ultimate Ethereum Scaling Solution ā€“ Finematics

An Incomplete Guide to Rollups

How does Optimismā€™s Rollup really work?

What are zk-SNARKs? | Zcash