Based rollups don’t need a complicated auctioning system to reward proposers if they are willing to sacrifice L2 MEV rewards
Introduction
Before reading it is vital to understand Based Rollups 3, the mev-boost 1 block supply chain 1, and sequencing
The inspiration for this article was a section of the Taiko docs that mentions their system for choosing which provider to reward:
The first proposeBlock tx in the enclosing L1 block will earn the [block] reward.– Proposing Taiko blocks 1
That sentence is followed up by this note:
This is a temporary solution which may change soon, as we see an issue that can arise where the proposer will submit empty blocks to earn the reward.– Proposing Taiko blocks 1
The rest of this article argues why it is unnecessary to change the first-come-first-serve (FCFS) system that is currently implemented in the Taiko testnet.
Explanation
Assumptions
L1 searchers = L2 builders = L2 proposers
All will be referred to as “L2 builders” for the remainder of this article.
This assumption is reasonable because L2 proposers will bid for inclusion in the L1 through the mev-boost system, acting as L1 searchers. L2 builders and proposers look the same to the block reward system.
L1 builders choose to include only the highest-paying L2 builder’s bundle
Every proposer implements a check in their contract that only pays the builder if they are the first to call proposeBlock (and therefore winning the l2 block reward.) L1 builders are then incentivized to only include the highest bidding L2 builder’s block.
An FCFS system rewards only the first block proposal in the L1 block.
Only the first L2 block proposed in a single enclosing L1 block wins the block reward. All subsequent block proposals are either ignored or simply not rewarded.
Reasoning
If these assumptions are true, the proposer with the most valuable L2 block will win the L2 proposer reward.
L2 builders will compete to build the most valuable L2 block, which they will submit to L1 builders as mev-boost bundles. Whichever L2 builder outcompetes its peers will be included at the top of block by the L1 builder.
Tradeoffs
MEV
As in most rollup designs, a based rollup using this design will sacrifice ALL MEV rewards to its L1. Researcher Justin Drake has stated that this problem is not specific to based rollups. 1
Additionally, MEV rewards are expected to trend towards 0 over time as MEV-aware applications leak less and less MEV to block builders.
Spam resistance
This is the concern of the Taiko team.
The idea is that L2 builders will propose empty (or nearly empty) blocks to earn the block reward without generating valuable blocks.
An FCFS system will resist spam because spamming L2 builders will only bid up to the value of the block reward. L2 blocks will be worth more than this because of the MEV opportunities that exist inside these L2 blocks. Legitimate (non-spamming) L2 builders will be able to outbid spamming L2 builders based on the MEV rewards that they can extract.
The Taiko team published an article on MEV in based rollups that begins to address this issue:
L1 builders will include L2 blocks into their L1 blocks as long as there is at least a tiny of piece of MEV in this block (and the gas limit is not reached). And as long as there are any DEXs deployed on L2, there always will be some MEV additionally to transaction fees;– MEV for “Based Rollup” 1
Changing the reward that L2 builders receive based on other aspects of their blocks (transaction count, execution layer information, etc.) may also allow legitimate L2 builders to outbid spamming L2 builders if MEV rewards are negligible. Further research is required to determine these metrics. These variable block rewards only help legitimate L2 builders outbid spamming L2 builders, they can be set up within an FCFS system.
Conclusion
As far as I can see, a simple FCFS system should be sufficient for Based Rollups, and no further development is required. Research into variable block rewards should be conducted to determine if MEV rewards will be enough to completely avoid spamming L2 builders earning the L2 block reward.
This article should be common sense, but I want to start a discussion on this (because I’m probably wrong lol)
All Comments