Skip to content

Commit b2b468e

Browse files
KarmasticMichael de Hoog
andauthored
Adds comments / clarifies L1 as ethereum, not Base (#19)
* Adds comments / clarifies L1 as ethereum, not Base * Fix casing --------- Co-authored-by: Michael de Hoog <michael.dehoog@coinbase.com>
1 parent 0f3e8e8 commit b2b468e

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ We recommend you this configuration to run a node:
3434

3535
### Troubleshooting
3636

37-
If you encounter problems with your node, please open a [GitHub issue](https://github.com/base-org/node/issues/new/choose) or reach out on our Discord:
38-
- Once you've joined, in the Discord app go to `server menu` > `Linked Roles` > `connect GitHub` and connect your GitHub account so you can gain access to our special developer channels
37+
If you encounter problems with your node, please open a [GitHub issue](https://github.com/base-org/node/issues/new/choose) or reach out on our [Discord](https://discord.gg/buildonbase):
38+
- Once you've joined, in the Discord app go to `server menu` > `Linked Roles` > `connect GitHub` and connect your GitHub account so you can gain access to our developer channels
3939
- Report your issue in `#🛟|node-support`
4040

4141
### Supported networks
@@ -47,7 +47,7 @@ If you encounter problems with your node, please open a [GitHub issue](https://g
4747

4848
### Usage
4949

50-
1. Ensure you have an Goerli L1 node RPC available, and set `OP_NODE_L1_ETH_RPC` (in `docker-compose.yml` if using docker-compose).
50+
1. Ensure you have an Ethereum Goerli L1 node RPC available (not Base Goerli), and set `OP_NODE_L1_ETH_RPC` (in `docker-compose.yml` if using docker-compose). If running your own L1 node, it needs to be synced before Base will be able to fully sync.
5151
2. Run:
5252
```
5353
docker compose up

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
services:
2-
geth:
2+
geth: # this is Optimism's geth client
33
build: .
44
ports:
55
- 8545:8545
@@ -19,12 +19,12 @@ services:
1919
ports:
2020
- 7545:8545
2121
- 9222:9222
22-
- 7300:7300
22+
- 7300:7300 # metrics
2323
- 6060:6060
2424
command:
2525
- ./op-node-entrypoint.sh
2626
environment:
27-
- OP_NODE_L1_ETH_RPC=https://ethereum-goerli-rpc.allthatnode.com # replace with your L1 node RPC URL
27+
- OP_NODE_L1_ETH_RPC=https://ethereum-goerli-rpc.allthatnode.com # [recommended] replace with your preferred L1 (ethereum, not Base) node RPC URL
2828
- OP_NODE_L2_ENGINE_AUTH=/tmp/engine-auth-jwt
2929
- OP_NODE_L2_ENGINE_AUTH_RAW=688f5d737bad920bdfb2fc2f488d6b6209eebda1dae949a8de91398d932c517a # for localdev only
3030
- OP_NODE_L2_ENGINE_RPC=http://geth:8551

0 commit comments

Comments
 (0)