File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11# Running a Reth Node
22
3- This is a unified implementation of the Reth node set up that supports running both standard Reth or Base Reth with Flashblocks support.
3+ This is a unified implementation of the Reth node set up that supports running both OP Reth or Base Reth with Flashblocks support.
44
55## Setup
66
@@ -12,15 +12,15 @@ This is a unified implementation of the Reth node set up that supports running b
1212
1313Use the ` NODE_TYPE ` environment variable to select the implementation:
1414
15- - ` NODE_TYPE=vanilla ` - Standard Reth implementation (default)
15+ - ` NODE_TYPE=vanilla ` - OP Reth implementation (default)
1616- ` NODE_TYPE=base ` - Base L2 Reth implementation with Flashblocks support
1717
1818## Running the Node
1919
2020The node follows the standard ` docker-compose ` workflow in the master README.
2121
2222``` bash
23- # Run standard Reth node
23+ # Run OP Reth node
2424CLIENT=reth docker-compose up
2525
2626# Run Base L2 Reth node with Flashblocks support
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ if [[ "$NODE_TYPE" == "base" ]]; then
2828 echo " Starting Base Reth node"
2929 BINARY=" ./base-reth-node"
3030else
31- echo " Starting vanilla Reth node"
31+ echo " Starting OP Reth node"
3232 BINARY=" ./op-reth"
3333fi
3434
You can’t perform that action at this time.
0 commit comments