Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions reth/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Running a Reth Node

This is a unified implementation of the Reth node set up that supports running both standard Reth or Base Reth with Flashblocks support.
This is a unified implementation of the Reth node set up that supports running both OP Reth (Optimism fork) or Base Reth with Flashblocks support.

## Setup

Expand All @@ -12,15 +12,15 @@ This is a unified implementation of the Reth node set up that supports running b

Use the `NODE_TYPE` environment variable to select the implementation:

- `NODE_TYPE=vanilla` - Standard Reth implementation (default)
- `NODE_TYPE=vanilla` - OP Reth (Optimism fork) implementation (default)
- `NODE_TYPE=base` - Base L2 Reth implementation with Flashblocks support

## Running the Node

The node follows the standard `docker-compose` workflow in the master README.

```bash
# Run standard Reth node
# Run OP Reth (Optimism fork) node
CLIENT=reth docker-compose up

# Run Base L2 Reth node with Flashblocks support
Expand Down
2 changes: 1 addition & 1 deletion reth/reth-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if [[ "$NODE_TYPE" == "base" ]]; then
echo "Starting Base Reth node"
BINARY="./base-reth-node"
else
echo "Starting vanilla Reth node"
echo "Starting OP Reth node"
BINARY="./op-reth"
fi

Expand Down