You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This example shows how to deploy an Op Stack with rollup-boost using Flashblocks for pre-confirmations.
4
+
5
+
## What is Flashblocks?
6
+
7
+
Flashblocks is a feature in rollup-boost that enables pre-confirmations by proposing incremental sections of blocks. This allows for faster transaction confirmations and improved user experience on L2 networks.
8
+
9
+
## Quick Start
10
+
11
+
Deploy the Op Stack with rollup-boost and Flashblocks enabled:
12
+
13
+
```bash
14
+
$ go run main.go cook opstack --external-builder op-rbuilder --flashblocks
15
+
```
16
+
17
+
This will deploy an Op Stack chain with:
18
+
19
+
- A complete L1 setup (CL/EL)
20
+
- A complete L2 sequencer (op-geth/op-node/op-batcher)
21
+
- Rollup-boost with Flashblocks enabled for pre-confirmations
22
+
- Op-rbuilder as the external block builder with Flashblocks support
23
+
24
+
The `--flashblocks` flag enables the Flashblocks feature, allowing the system to provide pre-confirmations for faster transaction processing.
0 commit comments