Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ Base is a secure, low-cost, developer-friendly Ethereum L2 built on Optimism's [

### Supported Clients

- `geth` (default)
- `reth`
- `reth` (default)
- `geth`
- `nethermind`

## Requirements
Expand All @@ -58,15 +58,15 @@ Base is a secure, low-cost, developer-friendly Ethereum L2 built on Optimism's [

The following are the hardware specifications we use in production:

#### Geth Full Node
#### Reth Archive Node (recommended)

- **Instance**: AWS i4i.12xlarge
- **Instance**: AWS i7i.12xlarge
- **Storage**: RAID 0 of all local NVMe drives (`/dev/nvme*`)
- **Filesystem**: ext4

#### Reth Archive Node
#### Geth Full Node

- **Instance**: AWS i7ie.6xlarge
- **Instance**: AWS i7i.12xlarge
- **Storage**: RAID 0 of all local NVMe drives (`/dev/nvme*`)
- **Filesystem**: ext4

Expand All @@ -75,8 +75,8 @@ To run the node using a supported client, you can use the following command:
`CLIENT=supported_client docker compose up --build`

Supported clients:
- geth
- reth (with Flashblocks support option, see [Reth Node README](./reth/README.md))
- geth
- nethermind

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion reth/reth-entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ METRICS_PORT="${METRICS_PORT:-6060}"
DISCOVERY_PORT="${DISCOVERY_PORT:-30303}"
P2P_PORT="${P2P_PORT:-30303}"
ADDITIONAL_ARGS=""
NODE_TYPE="${NODE_TYPE:-vanilla}"
NODE_TYPE="${NODE_TYPE:-base}"

if [[ -z "${RETH_CHAIN:-}" ]]; then
echo "expected RETH_CHAIN to be set" 1>&2
Expand Down
Loading