How to Use Lazy Sequencing (Aggregation)
In this guide, we'll go over how to use lazy sequencing.
This feature was introduced in Rollkit v0.7.0 (with custom buffer time later in v0.13.7) and allows rollup operators to wait for transactions before building blocks. This prevents the rollup from building empty blocks.
To turn on lazy sequencing, add the following flag to your start command:
bash
--rollkit.lazy_aggregator
Additionally, if you want to specify the time interval used for block production even if there are no transactions, use:
bash
--rollkit.lazy_block_time <duration>
An example command with a custom block time of 1 minute:
bash
# start the chain
rollkit start [existing flags...]
rollkit start [existing flags...] --rollkit.lazy_aggregator --rollkit.lazy_block_time=1m0s