Simplify the validator exit docs further
This commit is contained in:
parent
6c0d756d54
commit
c9eb89e9e9
|
@ -1,7 +1,7 @@
|
|||
2023-03-22 v23.3.2
|
||||
==================
|
||||
|
||||
Nimbus `v23.3.2` is a `medium-urgency`, but mandatory upgrade providing full-support for the upcoming Capella hard-fork on Mainnet. Please upgrade at your earliest convenience - **before the 12th of April**.
|
||||
Nimbus `v23.3.2` is a `low-urgency`, but mandatory upgrade providing full-support for the upcoming Capella hard-fork on Mainnet. Please upgrade at your earliest convenience - **before the 12th of April**.
|
||||
|
||||
### Improvements
|
||||
|
||||
|
|
|
@ -1,8 +1,5 @@
|
|||
# Perform a voluntary exit
|
||||
|
||||
!!! note ""
|
||||
This feature is available from `v1.7.0` onwards - earlier versions relied on the now removed [JSON-RPC API](./api.md).
|
||||
|
||||
Voluntary exits allow validators to permanently stop performing their duties, and eventually recover the deposit.
|
||||
|
||||
Exits are subject to a wait period that depends on the length of the exit queue. While a validator is exiting, it still must perform its duties in order not to lose funds to inactivity penalities.
|
||||
|
@ -17,19 +14,7 @@ Exits are subject to a wait period that depends on the length of the exit queue.
|
|||
|
||||
To perform a voluntary exit, make sure your beacon node is running with the `--rest` option enabled (e.g. `./run-mainnet-beacon-node.sh --rest`), then run:
|
||||
|
||||
=== "Mainnet"
|
||||
```
|
||||
build/nimbus_beacon_node deposits exit \
|
||||
--data-dir=build/data/shared_mainnet_0 \
|
||||
--validator=<VALIDATOR_KEYSTORE_PATH>
|
||||
```
|
||||
|
||||
=== "Prater"
|
||||
```
|
||||
build/nimbus_beacon_node deposits exit \
|
||||
--data-dir=build/data/shared_prater_0 \
|
||||
--validator=<VALIDATOR_KEYSTORE_PATH>
|
||||
```
|
||||
build/nimbus_beacon_node deposits exit --validator=<VALIDATOR_KEYSTORE_PATH>
|
||||
|
||||
!!! note
|
||||
In the command above, you must replace `<VALIDATOR_KEYSTORE_PATH>` with the file-system path of an Ethereum [ERC-2335 Keystore](https://eips.ethereum.org/EIPS/eip-2335) created by a tool such as [staking-deposit-cli](https://github.com/ethereum/staking-deposit-cli) or [ethdo](https://github.com/wealdtech/ethdo).
|
||||
|
|
Loading…
Reference in New Issue