docs: add BASE_NODE_L1 vars to Quick Start; fix reth devnet→sepolia#1084
Open
0xAxiom wants to merge 1 commit into
Open
docs: add BASE_NODE_L1 vars to Quick Start; fix reth devnet→sepolia#10840xAxiom wants to merge 1 commit into
0xAxiom wants to merge 1 commit into
Conversation
…a typo Quick Start only showed OP_NODE_L1_* variables, but since reth+base-consensus is the default client, BASE_NODE_L1_ETH_RPC and BASE_NODE_L1_BEACON must also be configured or base-consensus cannot connect to L1. Also corrects 'devnet' → 'sepolia' in reth/README.md (the Flashblocks public WS endpoint is wss://sepolia.flashblocks.base.org/ws, not a devnet endpoint). Fixes base#1073, fixes base#1075
Collaborator
🟡 Heimdall Review Status
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Two small doc fixes reported in #1073 and #1075:
Quick Start missing
BASE_NODE_L1_*vars (docs(readme): Quick Start missing BASE_NODE_L1_ETH_RPC and BASE_NODE_L1_BEACON for base-consensus #1073)The Quick Start only showed
OP_NODE_L1_ETH_RPC,OP_NODE_L1_BEACON, andOP_NODE_L1_BEACON_ARCHIVER. Sincereth+base-consensusis now the default client, new operators also need to setBASE_NODE_L1_ETH_RPCandBASE_NODE_L1_BEACON(already present in both.env.mainnetand.env.sepolia). Without these,base-consensuscannot connect to L1.reth/README.md says "devnet" instead of "sepolia" (docs(reth): README refers to devnet instead of sepolia for Flashblocks websocket endpoint #1075)
The Flashblocks public WebSocket endpoint is
wss://sepolia.flashblocks.base.org/wsas confirmed by.env.sepolia. Updated the description accordingly.Changes
README.md: AddedBASE_NODE_L1_ETH_RPCandBASE_NODE_L1_BEACONto the Quick Start code block with a clarifying commentreth/README.md: Changed "devnet" → "sepolia"Fixes #1073, fixes #1075