docs: document Reth port and log level variables in env files#1077
docs: document Reth port and log level variables in env files#1077erhnysr wants to merge 1 commit into
Conversation
🟡 Heimdall Review Status
|
4a57828 to
40f1179
Compare
|
Rebased on latest main (post #1090) The PR has been rebased onto the current Changes ( Added two new commented-out sections before the existing PRUNING block: All variables verified against the current |
|
Still relevant and up to date. Happy to rebase if needed. |
Operators who want to customise execution-client ports (e.g. to run multiple nodes or resolve port conflicts) or change log verbosity had no way to discover the supported variables without reading execution-entrypoint directly. Add commented-out PORT CONFIGURATION and LOG LEVEL sections to both .env.mainnet and .env.sepolia, listing all variables already supported by execution-entrypoint with their defaults: RPC_PORT, WS_PORT, AUTHRPC_PORT, METRICS_PORT, DISCOVERY_PORT, V5_DISCOVERY_PORT, P2P_PORT, LOG_LEVEL Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
40f1179 to
ce42607
Compare
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
Hi! Following up here — documents the Reth port and log level variables in the env files, which were previously undocumented. Happy to address any feedback. |
Summary
Adds commented-out documentation for Reth-specific port and log level variables that are supported by
reth-entrypointbut were completely absent from the env files.Problem
Operators who want to customize Reth ports (e.g. running multiple nodes, resolving port conflicts) or change log verbosity had no way to discover these variables without reading the entrypoint source code directly.
Changes
Added documented, commented-out entries to both
.env.mainnetand.env.sepolia:RPC_PORT8545WS_PORT8546AUTHRPC_PORT8551METRICS_PORT6060DISCOVERY_PORT30303V5_DISCOVERY_PORT9200P2P_PORT30303LOG_LEVELinfoVerification
All variables verified against
reth/reth-entrypointsource.