Skip to content

Commit b844ef5

Browse files
reth: rename “vanilla” to “OP Reth”; align README terminology (#547)
* Update reth-entrypoint * Update README.md * Update reth/README.md * Update reth/README.md * Update reth/README.md --------- Co-authored-by: Danyal Prout <git@dany.al>
1 parent 3c34620 commit b844ef5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

reth/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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

1313
Use 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

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

2222
```bash
23-
# Run standard Reth node
23+
# Run OP Reth node
2424
CLIENT=reth docker-compose up
2525

2626
# Run Base L2 Reth node with Flashblocks support

reth/reth-entrypoint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [[ "$NODE_TYPE" == "base" ]]; then
2828
echo "Starting Base Reth node"
2929
BINARY="./base-reth-node"
3030
else
31-
echo "Starting vanilla Reth node"
31+
echo "Starting OP Reth node"
3232
BINARY="./op-reth"
3333
fi
3434

0 commit comments

Comments
 (0)