docs: add BASE_NODE_L1_* to Quick Start; fix reth/README devnet→sepolia typo#1091
Open
0xAxiom wants to merge 1 commit into
Open
docs: add BASE_NODE_L1_* to Quick Start; fix reth/README devnet→sepolia typo#10910xAxiom wants to merge 1 commit into
0xAxiom wants to merge 1 commit into
Conversation
- Quick Start step 3 now lists BASE_NODE_L1_ETH_RPC and BASE_NODE_L1_BEACON alongside the OP_NODE_* vars; reth (base-consensus) is the default client and silently fails to connect to L1 without them (closes base#1073) - Configuration > Required Settings adds a base-consensus L1 block mirroring the op-node block so the docs stay in sync with .env.mainnet/.env.sepolia - reth/README.md Setup section: "devnet" corrected to "sepolia" (closes 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 related documentation fixes:
1. Quick Start missing
BASE_NODE_L1_*variables (closes #1073)The Quick Start (step 3) only showed
OP_NODE_L1_ETH_RPC/OP_NODE_L1_BEACON, but since reth + base-consensus is now the default client, operators also need to setBASE_NODE_L1_ETH_RPCandBASE_NODE_L1_BEACON. These variables exist in.env.mainnetand.env.sepoliabut were invisible in the README — a new operator following the Quick Start would end up with base-consensus unable to connect to L1.2. reth/README.md says "devnet" instead of "sepolia" (closes #1075)
The Flashblocks setup note reads "mainnet and devnet" but the correct network name is
sepolia(matching the actual.env.sepoliafilename andwss://sepolia.flashblocks.base.org/wsendpoint).Changes
README.mdQuick Start step 3: addedBASE_NODE_L1_ETH_RPC+BASE_NODE_L1_BEACONunder abase-consensuscomment blockREADME.mdConfiguration > Required Settings: added abase-consensusL1 config block mirroring the existing op-node blockreth/README.md: "devnet" → "sepolia"