Skip to content

Commit 99dc572

Browse files
committed
Some refinements to the 22.11.0 release notes
1 parent 7dd4718 commit 99dc572

File tree

2 files changed

+21
-11
lines changed

2 files changed

+21
-11
lines changed

CHANGELOG.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ production-ready version of the [Nimbus validator client][1].
66
The validator client will enable advanced users such as professional
77
institutional operators to take advantage of features such as support
88
for [redundant beacon nodes][2], [enhanced validator privacy][3] and
9-
[distributed keystores][4]. All existing users, currently relying on
10-
the streamlined stand-alone beacon node setup are not required to take
11-
action, as this mode of operation will continue to be supported and
12-
improved forever.
9+
[distributed keystores][4]. Meanwhile, existing users still can use
10+
the streamlined stand-alone beacon node setup, as this mode of operation
11+
will continue to be supported and improved.
1312

1413
[1]: https://nimbus.guide/validator-client.html
1514
[2]: https://nimbus.guide/validator-client-options.html#multiple-beacon-nodes
@@ -32,19 +31,19 @@ improved forever.
3231

3332
https://github.com/status-im/nimbus-eth2/pull/4301
3433

35-
* The doppelganger detection will now protect validators added
34+
* The doppelganger detection now protects validators added
3635
on the fly through the Keymanager API:
3736

3837
https://github.com/status-im/nimbus-eth2/pull/4304
3938

40-
* Fine-tuned internal task scheduling will provide better
39+
* Fine-tuned internal task scheduling can provide better
4140
quality-of-service protections for performing all validator
4241
duties in the presence of syncing peers performing large
4342
number of concurrent block download requests:
4443

4544
https://github.com/status-im/nimbus-eth2/pull/4254
4645

47-
* The `--optimistic` mode of the beacon node will allow you to
46+
* The `--optimistic` mode of the beacon node allows you to
4847
stay synced with the network even without an execution layer
4948
node:
5049

@@ -54,6 +53,17 @@ improved forever.
5453
Please note that this mode is less secure and intended only
5554
for non-critical information retrieval through the Beacon API.
5655

56+
* The Nimbus build for the Gnosis chain (available when compiling
57+
from source) has full support for the upcoming merge:
58+
59+
https://github.com/status-im/nimbus-eth2/pull/4330
60+
https://forum.gnosis.io/t/gip-16-gnosis-chain-xdai-gnosis-merge/1904
61+
62+
* The stand-alone light client (available when compiling from source)
63+
now preserves progress between restarts:
64+
65+
https://github.com/status-im/nimbus-eth2/pull/4371
66+
5767
### Fixes
5868

5969
* A small risk for missing block proposals was present under heavy

beacon_chain/conf.nim

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -540,16 +540,16 @@ type
540540
name: "terminal-total-difficulty-override" .}: Option[string]
541541

542542
validatorMonitorAuto* {.
543-
desc: "Automatically monitor locally active validators"
543+
desc: "Automatically monitor locally active validators (BETA)"
544544
defaultValue: false
545545
name: "validator-monitor-auto" .}: bool
546546

547547
validatorMonitorPubkeys* {.
548-
desc: "One or more validators to monitor - works best when --subscribe-all-subnets is enabled"
548+
desc: "One or more validators to monitor - works best when --subscribe-all-subnets is enabled (BETA)"
549549
name: "validator-monitor-pubkey" .}: seq[ValidatorPubKey]
550550

551551
validatorMonitorTotals* {.
552-
desc: "Publish metrics to single 'totals' label for better collection performance when monitoring many validators"
552+
desc: "Publish metrics to single 'totals' label for better collection performance when monitoring many validators (BETA)"
553553
defaultValue: false
554554
name: "validator-monitor-totals" .}: bool
555555

@@ -918,7 +918,7 @@ type
918918
name: "payload-builder" .}: bool
919919

920920
beaconNodes* {.
921-
desc: "URL addresses to one or more beacon node HTTP REST APIs (The support for using multiple beacon nodes is considered BETA quality)",
921+
desc: "URL addresses to one or more beacon node HTTP REST APIs",
922922
defaultValue: @[defaultBeaconNodeUri]
923923
defaultValueDesc: $defaultBeaconNodeUri
924924
name: "beacon-node" .}: seq[Uri]

0 commit comments

Comments
 (0)