You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/Concepts/Withdrawals.md
+59-16
Original file line number
Diff line number
Diff line change
@@ -6,49 +6,92 @@ sidebar_position: 8
6
6
7
7
# Withdrawals
8
8
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:
10
11
11
12
- Execution layer rewards paid directly to a withdrawal address (Ethereum address).
12
13
- Consensus layer rewards for performing actions each epoch.
13
14
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.
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.
15
21
16
-
:::warning
22
+
:::caution
17
23
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.
19
29
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.
21
33
22
34
:::
23
35
24
-
You do not pay gas fees for receiving reward payments.
36
+
You don't pay gas fees for receiving reward payments.
25
37
26
38
## Types of withdrawals
27
39
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).
29
43
30
44
### Partial withdrawals
31
45
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.
33
51
34
52
### Full withdrawals
35
53
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.
37
60
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.
39
63
40
64
## How it works
41
65
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.
43
68
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.
45
71
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.
47
77
48
78
## Withdrawal keys
49
79
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.
51
85
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`.
53
88
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
Copy file name to clipboardexpand all lines: docs/HowTo/External-Signer/Manage-keys.md
+47-12
Original file line number
Diff line number
Diff line change
@@ -6,17 +6,28 @@ sidebar_position: 2
6
6
7
7
# Manage validator signing keys
8
8
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.
10
12
11
13
## Enable validator client API
12
14
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.
14
20
15
21
### Create a keystore
16
22
17
23
When enabling the validator client API, you must create a keystore.
18
24
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?`.
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?`.
20
31
21
32
<!--tabs-->
22
33
@@ -34,19 +45,36 @@ When enabling the validator client API, you must create a keystore.
34
45
35
46
<!--/tabs-->
36
47
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.
38
50
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.
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.
48
66
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.
50
78
51
79
```ini title="openssl.cnf"
52
80
[req]
@@ -74,11 +102,14 @@ When the key manager API is accessible via different domain names or IP addresse
74
102
IP.2 = 10.0.0.6
75
103
```
76
104
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.
78
107
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.
80
110
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:
82
113
83
114
<!--tabs-->
84
115
@@ -100,7 +131,11 @@ When the key manager API is accessible via different domain names or IP addresse
100
131
101
132
Authentication verifies user access to requested validator client methods.
102
133
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.
104
139
105
140
```bash title="Example"
106
141
curl -H "Authorization: Bearer <TOKEN>" -X GET https://localhost:5052/eth/v1/keystores
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.
40
47
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.
42
50
43
51
## Update your withdrawal address
44
52
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
+
45
60
### From a BLS withdrawal address to an Ethereum address
46
61
47
-
:::warning
62
+
:::caution
48
63
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.
allow you to generate this signed message, which can be submitted directly to
68
+
your beacon node if your REST API is active.
50
69
51
70
:::
52
71
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.
54
78
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.
can sign the request correctly, and the signed data can be submitted directly,
82
+
or using your own beacon node.
56
83
57
-
:::warning Important information about changing withdrawal credentials
84
+
:::caution Important information about changing withdrawal credentials
58
85
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.
61
90
- Ensure you update to the expected Ethereum address because the change is permanent.
62
91
63
92
:::
64
93
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.
66
100
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.
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.
72
111
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.
74
114
75
-
:::warning
115
+
:::caution
76
116
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
0 commit comments