Skip to content

Commit b969c07

Browse files
edit withdrawals content (#443)
1 parent 219975b commit b969c07

File tree

4 files changed

+168
-48
lines changed

4 files changed

+168
-48
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ npm-debug.log*
1919
yarn-debug.log*
2020
yarn-error.log*
2121
.vercel
22+
.idea

docs/Concepts/Withdrawals.md

+59-16
Original file line numberDiff line numberDiff line change
@@ -6,49 +6,92 @@ sidebar_position: 8
66

77
# Withdrawals
88

9-
Validators staking ether on Mainnet after [The Merge](Merge.md), accrue 2 forms of rewards:
9+
Validators staking ether on Mainnet after [The Merge](Merge.md), accrue two
10+
forms of rewards:
1011

1112
- Execution layer rewards paid directly to a withdrawal address (Ethereum address).
1213
- Consensus layer rewards for performing actions each epoch.
1314

14-
The [Capella network upgrade](https://notes.ethereum.org/@launchpad/withdrawals-faq#Q-What-is-ShanghaiCapella) implements an automated process that allows a validator's rewards to be transferred from the consensus layer to an Ethereum address on the execution layer. Before the Capella upgrade, consensus layer rewards were locked, and unable to be transferred to an Ethereum address.
15+
The
16+
[Capella network upgrade](https://notes.ethereum.org/@launchpad/withdrawals-faq#Q-What-is-ShanghaiCapella)
17+
implements an automated process that allows a validator's rewards to be
18+
transferred from the consensus layer to an Ethereum address on the execution layer.
19+
Before the Capella upgrade, consensus layer rewards were locked, and couldn't be
20+
transferred to an Ethereum address.
1521

16-
:::warning
22+
:::caution
1723

18-
When you create a validator, it's possible to set its withdrawal address to a [BLS address](https://en.wikipedia.org/wiki/BLS_digital_signature), or an Ethereum address. Withdrawal keys that are configured as BLS keys cannot have automated withdrawals executed for them.
24+
When you create a validator, you can set its withdrawal address to a
25+
[BLS address](https://en.wikipedia.org/wiki/BLS_digital_signature), or an
26+
Ethereum address.
27+
Withdrawal keys configured as BLS keys can't have automated withdrawals executed
28+
for them.
1929

20-
You can [update your BLS withdrawal address to an Ethereum address](../HowTo/Withdrawal-Keys.md) after the Capella upgrade.
30+
You can
31+
[update your BLS withdrawal address to an Ethereum address](../HowTo/Withdrawal-Keys.md)
32+
after the Capella upgrade.
2133

2234
:::
2335

24-
You do not pay gas fees for receiving reward payments.
36+
You don't pay gas fees for receiving reward payments.
2537

2638
## Types of withdrawals
2739

28-
Two types of automated withdrawals occur once the withdrawal key is set up as an Ethereum address: [partial withdrawals](#partial-withdrawals) and [full withdrawals](#full-withdrawals).
40+
Two types of automated withdrawals occur once the withdrawal key is set up as an
41+
Ethereum address: [partial withdrawals](#partial-withdrawals) and
42+
[full withdrawals](#full-withdrawals).
2943

3044
### Partial withdrawals
3145

32-
Partial withdrawals are for active validators that have a balance exceeding 32 ETH. The network periodically makes transfers to the associated Ethereum address for validators with a balance exceeding 32 ETH. This means that a validator's balance will periodically reduce to 32 ETH once Capella becomes the active fork on the network.
46+
Partial withdrawals are for active validators that have a balance exceeding 32 ETH.
47+
The network periodically makes transfers to the associated Ethereum address for
48+
validators with a balance exceeding 32 ETH.
49+
This means that a validator's balance periodically reduces to 32 ETH once
50+
Capella becomes the active fork on the network.
3351

3452
### Full withdrawals
3553

36-
Full withdrawals are for validators that have exited the network, and have waited the necessary time to withdraw their funds. For these validators, their entire balance is returned to the Ethereum address associated with the validator key. The balance cannot be transferred until the validator key is associated with an Ethereum address.
54+
Full withdrawals are for validators that have exited the network, and have
55+
waited the necessary time to withdraw their funds.
56+
For these validators, their entire balance is returned to the Ethereum address
57+
associated with the validator key.
58+
The balance can't be transferred until the validator key is associated with an
59+
Ethereum address.
3760

38-
An exited validator cannot become active on the network again, and currently (as of Capella), there is no mechanism for recycling the validator ID that has been exited.
61+
An exited validator can't become active on the network again, and currently (as
62+
of Capella), there's no mechanism for recycling the validator ID that has been exited.
3963

4064
## How it works
4165

42-
From the first Capella slot, block proposers provide up to 16 withdrawals per proposed block.
66+
From the first Capella slot, block proposers provide up to 16 withdrawals per
67+
proposed block.
4368

44-
Proposers start from validator 1, and find validators that qualify: must have an Ethereum address as a withdrawal address, must have an excess balance, or have exited.
69+
Proposers start from validator 1, and find validators that qualify: must have an
70+
Ethereum address as a withdrawal address, must have an excess balance, or have exited.
4571

46-
Block proposers select the withdrawals that go into the block. In each block, up to 16 changes to withdrawal credentials are also allowed, where an owner of a validator key can [update their withdrawal key's Ethereum address](../HowTo/Withdrawal-Keys.md). This update is retrieved from a pool, and the order is not guaranteed.
72+
Block proposers select the withdrawals that go into the block.
73+
In each block, up to 16 changes to withdrawal credentials are also allowed,
74+
where an owner of a validator key can
75+
[update their withdrawal key's Ethereum address](../HowTo/Withdrawal-Keys.md).
76+
This update is retrieved from a pool, and the order isn't guaranteed.
4777

4878
## Withdrawal keys
4979

50-
Withdrawal keys that are configured as [BLS keys](https://en.wikipedia.org/wiki/BLS_digital_signature) cannot have automated withdrawals executed for them. Users must alter their credentials to specify an Ethereum address for their withdrawal key.
80+
Withdrawal keys configured as
81+
[BLS keys](https://en.wikipedia.org/wiki/BLS_digital_signature) can't have
82+
automated withdrawals executed for them.
83+
Users must alter their credentials to specify an Ethereum address for their
84+
withdrawal key.
5185

52-
BLS withdrawal keys are prefixed with `0x00`, whereas Ethereum withdrawal keys are prefixed with a `0x01`.
86+
BLS withdrawal keys are prefixed with `0x00`, whereas Ethereum withdrawal keys
87+
are prefixed with `0x01`.
5388

54-
To determine the type of withdrawal key used by your validator, you can [query your validator configuration onchain](../HowTo/Withdrawal-Keys.md#determine-the-withdrawal-key-type).
89+
To determine the type of withdrawal key your validator uses, you can
90+
[query your validator configuration onchain](../HowTo/Withdrawal-Keys.md#determine-the-withdrawal-address-type).
91+
92+
:::caution
93+
94+
Don't store your [validator keys](../HowTo/External-Signer/Manage-keys.md) and
95+
withdrawal keys in the same location.
96+
97+
:::

docs/HowTo/External-Signer/Manage-keys.md

+47-12
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,28 @@ sidebar_position: 2
66

77
# Manage validator signing keys
88

9-
You can manage the signing keys of validators using the [key manager API endpoints](https://ethereum.github.io/keymanager-APIs/). You can list keys, import keystores, and delete keys with the API.
9+
You can manage the signing keys of validators using the
10+
[key manager API endpoints](https://ethereum.github.io/keymanager-APIs/).
11+
You can list keys, import keystores, and delete keys with the API.
1012

1113
## Enable validator client API
1214

13-
To use the key manager API endpoints, [enable the validator client API](../../Reference/Rest_API/Rest.md#enable-the-validator-client-api) using the [`--validator-api-enabled`](../../Reference/CLI/CLI-Syntax.md#validator-api-enabled) option. You must also [create a keystore](#create-a-keystore) to enable access.
15+
To use the key manager API endpoints,
16+
[enable the validator client API](../../Reference/Rest_API/Rest.md#enable-the-validator-client-api)
17+
using the [`--validator-api-enabled`](../../Reference/CLI/CLI-Syntax.md#validator-api-enabled)
18+
option.
19+
You must also [create a keystore](#create-a-keystore) to enable access.
1420

1521
### Create a keystore
1622

1723
When enabling the validator client API, you must create a keystore.
1824

19-
1. Use a tool such as [keytool](https://docs.oracle.com/javase/6/docs/technotes/tools/solaris/keytool.html) or [openSSL](https://www.openssl.org/) to generate a keystore. Note that the `CN` value must be set to the domain name or IP used to access the validator API. Keytool sets this based on the answer to `What is your first and last name?`.
25+
1. Use a tool such as
26+
[keytool](https://docs.oracle.com/javase/6/docs/technotes/tools/solaris/keytool.html)
27+
or [openSSL](https://www.openssl.org/) to generate a keystore.
28+
Note that the `CN` value must be set to the domain name or IP used to access
29+
the validator API.
30+
Keytool sets this based on the answer to `What is your first and last name?`.
2031

2132
<!--tabs-->
2233

@@ -34,19 +45,36 @@ When enabling the validator client API, you must create a keystore.
3445

3546
<!--/tabs-->
3647

37-
2. Create a plain text file (for example `validator_keystore_pass.txt`) that stores the password you defined in the keystore.
48+
2. Create a plain text file (for example, `validator_keystore_pass.txt`) that
49+
stores the password you defined in the keystore.
3850

39-
3. Start Teku using [`--validator-api-keystore-file`](../../Reference/CLI/CLI-Syntax.md#validator-api-keystore-file) to define the keystore file and [`--validator-api-keystore-password-file`](../../Reference/CLI/CLI-Syntax.md#validator-api-keystore-password-file) to define the password file.
51+
3. Start Teku using
52+
[`--validator-api-keystore-file`](../../Reference/CLI/CLI-Syntax.md#validator-api-keystore-file)
53+
to define the keystore file and
54+
[`--validator-api-keystore-password-file`](../../Reference/CLI/CLI-Syntax.md#validator-api-keystore-password-file)
55+
to define the password file.
4056

4157
```bash title="Example"
4258
teku --validator-api-enabled --validator-api-keystore-file=validator_keystore.p12 --validator-api-keystore-password-file=validator_keystore_pass.txt
4359
```
4460

45-
#### Supporting Multiple Domains and IPs
61+
:::caution
4662

47-
When the key manager API is accessible via different domain names or IP addresses, each domain or IP needs to be listed in the SSL certificate to be accepted as valid. Multiple addresses can be specified when using openSSL to generate the certificate.
63+
Don't store your validator keys and
64+
[withdrawal keys](../../Concepts/Withdrawals.md#withdrawal-keys) in the same
65+
location.
4866
49-
1. Create a file named `openssl.cnf` containing the configuration required for the certificate.
67+
:::
68+
69+
#### Support multiple domains and IPs
70+
71+
When the key manager API is accessible using different domain names or IP
72+
addresses, each domain or IP must be listed in the SSL certificate to be
73+
accepted as valid.
74+
Multiple addresses can be specified when using openSSL to generate the certificate.
75+
76+
1. Create a file named `openssl.cnf` containing the configuration required for
77+
the certificate.
5078
5179
```ini title="openssl.cnf"
5280
[req]
@@ -74,11 +102,14 @@ When the key manager API is accessible via different domain names or IP addresse
74102
IP.2 = 10.0.0.6
75103
```
76104
77-
You should adjust the `req_distinguised_name` and `alt_names` sections to match your needs.
105+
You should adjust the `req_distinguised_name` and `alt_names` sections to
106+
match your needs.
78107
79-
2. Create a plain text file (for example, `validator_keystore_pass.txt`) that stores the password you defined in the keystore.
108+
2. Create a plain text file (for example, `validator_keystore_pass.txt`) that
109+
stores the password you defined in the keystore.
80110
81-
3. Generate an x509 certificate from the configuration and convert it to PKCS12 format:
111+
3. Generate an x509 certificate from the configuration and convert it to PKCS12
112+
format:
82113
83114
<!--tabs-->
84115
@@ -100,7 +131,11 @@ When the key manager API is accessible via different domain names or IP addresse
100131
101132
Authentication verifies user access to requested validator client methods.
102133
103-
Upon startup of the validator client, Teku creates an API token at the path `/opt/teku/data/validator/key-manager`. When calling an endpoint that requires authorization, you must send the generated token in the `Authorization` request header field with the `Bearer` authentication scheme.
134+
Upon startup of the validator client, Teku creates an API token at the path
135+
`/opt/teku/data/validator/key-manager`.
136+
When calling an endpoint that requires authorization, you must send the
137+
generated token in the `Authorization` request header field with the `Bearer`
138+
authentication scheme.
104139
105140
```bash title="Example"
106141
curl -H "Authorization: Bearer <TOKEN>" -X GET https://localhost:5052/eth/v1/keystores

docs/HowTo/Withdrawal-Keys.md

+61-20
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,23 @@ sidebar_position: 14
66

77
# Update your withdrawal credentials
88

9-
When you create a validator, it’s possible to set its [withdrawal](../Concepts/Withdrawals.md) address to a BLS address, or an Ethereum address.
9+
When you create a validator, it’s possible to set its
10+
[withdrawal](../Concepts/Withdrawals.md) address to a BLS address, or an
11+
Ethereum address.
1012

11-
You can update your BLS withdrawal address to an Ethereum address after the Capella upgrade.
13+
You can update your BLS withdrawal address to an Ethereum address after the
14+
Capella upgrade.
1215

1316
## Determine the withdrawal address type
1417

1518
**Prerequisites**:
1619

17-
- Access to the beacon node API endpoint. By default this is `localhost:5051`
18-
- Install [`curl`](https://curl.se/) and [`jq`](https://stedolan.github.io/jq/)
20+
- Access to the beacon node API endpoint.
21+
The default is `localhost:5051`.
22+
- [`curl`](https://curl.se/) and [`jq`](https://stedolan.github.io/jq/) installed.
1923

20-
The following shell script allows you to determine the withdrawal address of a given validator ID.
24+
The following shell script allows you to determine the withdrawal address of a
25+
given validator ID.
2126

2227
<!--tabs-->
2328

@@ -36,44 +41,80 @@ curl http://localhost:5051/eth/v1/beacon/states/finalized/validators/$VALIDATOR
3641

3742
<!--/tabs-->
3843

39-
In the script, specify the `<VALIDATOR_INDEX>` (for example `1`) that was provided when you joined the network. Alternatively you can specify the validator's public key.
44+
In the script, specify the `<VALIDATOR_INDEX>` (for example, `1`) that was
45+
provided when you joined the network.
46+
Alternatively, you can specify the validator's public key.
4047

41-
In the output, the first 4 characters of the string, in this case `0x00`, indicates the key is a BLS withdrawal key.
48+
In the output, the first four characters of the string, in this case `0x00`,
49+
indicates the key is a BLS withdrawal key.
4250

4351
## Update your withdrawal address
4452

53+
:::caution
54+
55+
Don't store your [validator keys](External-Signer/Manage-keys.md) and withdrawal
56+
keys in the same location.
57+
58+
:::
59+
4560
### From a BLS withdrawal address to an Ethereum address
4661

47-
:::warning
62+
:::caution
4863

49-
Teku does not offer functionality to create a signed withdrawal credential change. Tools such as [`ethdo`](https://github.com/wealdtech/ethdo/blob/master/docs/changingwithdrawalcredentials.md) allow you to generate this signed message, which can be submitted directly to your beacon node if your REST API is active.
64+
Teku doesn't offer functionality to create a signed withdrawal credential change.
65+
Tools such as
66+
[`ethdo`](https://github.com/wealdtech/ethdo/blob/master/docs/changingwithdrawalcredentials.md)
67+
allow you to generate this signed message, which can be submitted directly to
68+
your beacon node if your REST API is active.
5069

5170
:::
5271

53-
If your withdrawal address is a BLS key (starts with `0x00`), the Capella fork provides a process to update your withdrawal address to a `0x01` withdrawal key (Ethereum address). You must have the BLS withdrawal address private key, or the seed phrase (mnemonic) to sign the request to prove that you have access to the BLS withdrawal key.
72+
If your withdrawal address is a BLS key (starts with `0x00`), the Capella fork
73+
provides a process to update your withdrawal address to a `0x01` withdrawal key
74+
(Ethereum address).
75+
You must have the BLS withdrawal address private key, or the seed phrase
76+
(mnemonic) to sign the request to prove that you have access to the BLS
77+
withdrawal key.
5478

55-
Tools such as [ethdo](https://github.com/wealdtech/ethdo/blob/master/docs/changingwithdrawalcredentials.md) are able to sign the request correctly, and the signed data can be submitted directly, or via your own beacon node.
79+
Tools such as
80+
[ethdo](https://github.com/wealdtech/ethdo/blob/master/docs/changingwithdrawalcredentials.md)
81+
can sign the request correctly, and the signed data can be submitted directly,
82+
or using your own beacon node.
5683

57-
:::warning Important information about changing withdrawal credentials
84+
:::caution Important information about changing withdrawal credentials
5885

59-
- Once a validator has been updated to use a `0x01` withdrawal key (Ethereum address), it cannot be changed again.
60-
- Updating your withdrawal credentials is not available until the Capella fork is active.
86+
- Once you update a validator to use a `0x01` withdrawal key (Ethereum address),
87+
you can't change it again.
88+
- Updating your withdrawal credentials isn't available until the Capella fork is
89+
active.
6190
- Ensure you update to the expected Ethereum address because the change is permanent.
6291

6392
:::
6493

65-
A maximum of 16 validator keys can update their withdrawal credentials per block, so the process may be congested initially. If you submit a request to update your key, and it hasn't been done in a period of time, you might consider re-submitting the request. It may take several epochs for the change to be included in a block, depending on the number of requests in the queue.
94+
A maximum of 16 validator keys can update their withdrawal credentials per
95+
block, so the process may be congested initially.
96+
If you submit a request to update your key, and it hasn't been done in a period
97+
of time, you might consider re-submitting the request.
98+
It might take several epochs for the change to be included in a block, depending
99+
on the number of requests in the queue.
66100

67-
Query the [`bls_to_execution_changes`](https://consensys.github.io/teku/#tag/Beacon/operation/getBlsToExecutionChanges) API see if your request is still in the pool.
101+
Query the
102+
[`bls_to_execution_changes`](https://consensys.github.io/teku/#tag/Beacon/operation/getBlsToExecutionChanges)
103+
API see if your request is still in the pool.
68104

69105
### Update your Ethereum address
70106

71-
If your withdrawal credentials are set to an Ethereum address, and you wish to update it to a different address, you'll need to create a new validator key. You can exit your current validator key as a voluntary exit, and use the funds from the full withdrawal of that to create the new validator key.
107+
If your withdrawal credentials are set to an Ethereum address, and you wish to
108+
update it to a different address, you must create a new validator key.
109+
You can exit your current validator key as a voluntary exit, and use the funds
110+
from the full withdrawal of that to create the new validator key.
72111

73-
The voluntary exit process takes while to complete, and the exiting validator must remain active during that time to avoid inactivity penalties.
112+
The voluntary exit process takes while to complete, and the exiting validator
113+
must remain active during that time to avoid inactivity penalties.
74114

75-
:::warning
115+
:::caution
76116

77-
Ensure that you own the current Ethereum address before exiting, otherwise you will be unable to access your funds.
117+
Ensure that you own the current Ethereum address before exiting, otherwise you
118+
can't access your funds.
78119

79120
:::

0 commit comments

Comments
 (0)