Expose (json) log format, hide and deprecate obsolete options#7842
Merged
arnetheduck merged 10 commits intounstablefrom Jan 13, 2026
Merged
Expose (json) log format, hide and deprecate obsolete options#7842arnetheduck merged 10 commits intounstablefrom
arnetheduck merged 10 commits intounstablefrom
Conversation
The `json` log format is documented in the guide but did not, until now, appear in the `--help` text. Take the opportunity to clean up the options and docs: * prefer `--el=<url>` throughout (`--web3-url` remains as an availble and equivalent name but no longer appears in `--help`) * expose `--era` option that is used to distribute historical/archived blocks on the beacon network * document when options were obsoleted and provide migration docs where reasonable * If `jwt.hex` exists in the data directory, use it when starting the node - when running Nimbus as both execution and beacon client sharing a data directory, this "just works" since one of them will write while the other reads the file. * Simplify JWT implmenentation by hardcoding some of the JSON messages * Add a search bar to the docs (didn't we have one before??) * Use the unified binary in the execution client docs * Note that you can now stake more than 32 ETH per validator * Remove obsolete gitcoin donation link * Remove BETA tag for validator client metrics - no significant changes are currently planned
tersec
reviewed
Jan 11, 2026
arnetheduck
added a commit
to status-im/nimbus-eth1
that referenced
this pull request
Jan 12, 2026
Companion to status-im/nimbus-eth2#7842, bumps eth2
Contributor
|
tersec
pushed a commit
to status-im/nimbus-eth1
that referenced
this pull request
Jan 13, 2026
* CLI and logging updates Companion to status-im/nimbus-eth2#7842, bumps eth2 * bump * lint * lint * docs * nph
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.
The
jsonlog format is documented in the guide but did not, until now, appear in the--helptext.Take the opportunity to clean up the options and docs:
--el=<url>throughout (--web3-urlremains as an availble and equivalent name but no longer appears in--help)--eraoption that is used to distribute historical/archived blocks on the beacon networkjwt.hexexists in the data directory, use it when starting the node - when running Nimbus as both execution and beacon client sharing a data directory, this "just works" since one of them will write while the other reads the file.