nimbus-eth2/docs/the_nimbus_book/src/voluntary-exit.md

24 lines
1.3 KiB
Markdown
Raw Normal View History

2020-11-30 02:13:47 +01:00
# Perform a voluntary exit
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.
2020-11-30 02:13:47 +01:00
!!! warning
Voluntary exits are **irreversible**. You won't be able to validate again with the same key.
!!! note
Voluntary exits won't be processed if the chain isn't finalising.
2020-11-30 02:13:47 +01:00
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:
2021-05-22 11:13:27 +02:00
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).
2020-11-30 02:13:47 +01:00
2022-02-14 12:39:10 +01:00
## `rest-url` parameter
The `--rest-url` parameter can be used to point the exit command to a specific node for publishing the request, as long as it's compatible with the [REST API](./rest-api.md).
2023-04-05 19:23:23 +03:00