docs: fix local testnet RPC port numbering and expand running-local-network guide#441
Open
Zhekinmaksim wants to merge 1 commit into
Open
Conversation
Collaborator
|
I think you have to rebase the branch |
…etwork guide The doc listed Reth RPC ports as 8545-8548 counting up, but testnet.rs assigns them counting down from 8545 (node0=8545 .. node3=8542). Also documents the Summit-side ports per node, the testnet bin flags, what reset.sh removes, and common failure modes for first-time setup.
b464f25 to
5fe8536
Compare
Author
|
Rebased onto the current |
matthias-wright
approved these changes
Jul 8, 2026
Collaborator
|
LGTM, ready to merge |
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.
Supersedes #438, which was auto-closed when
audit-may-2026was deleted.The current doc says the local testnet Reth RPC ports are
8545, 8546, 8547, 8548.node/src/bin/testnet.rsassigns them counting down:node0=8545, node1=8544, node2=8543, node3=8542, so step 3 of the guide points readers at ports that are never opened.This PR fixes the port list and, while touching the file, fills the main gaps for first-time setup, all verified against
testnet.rson this branch: a per-node port table (Reth RPC, Summit RPC, admin RPC, consensus P2P, Prometheus), the testnet bin flags (--nodes,--only-reth,--log-dir,--critical-log-dir), a note on why upstream reth will not work (--enclave.endpoint-port), whatreset.shactually removes, and a short troubleshooting list. The "Running distributed" section is unchanged.