diff --git a/reth/README.md b/reth/README.md index 887f13b1..a694baca 100644 --- a/reth/README.md +++ b/reth/README.md @@ -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 @@ -12,7 +12,7 @@ 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 @@ -20,7 +20,7 @@ Use the `NODE_TYPE` environment variable to select the implementation: 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 diff --git a/reth/reth-entrypoint b/reth/reth-entrypoint index bf1015d1..59ff6d8b 100755 --- a/reth/reth-entrypoint +++ b/reth/reth-entrypoint @@ -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