Skip to content

Commit 18d46b4

Browse files
rolfyoneajsuttonalexandratranNicolasMassart
authored
Doc merge requirements (#360)
* draft of merge requirements * Update docs/Concepts/PreparingForTheMerge.md Co-authored-by: Adrian Sutton <[email protected]> * Update docs/Concepts/PreparingForTheMerge.md Co-authored-by: Adrian Sutton <[email protected]> * Update docs/Concepts/PreparingForTheMerge.md Co-authored-by: Adrian Sutton <[email protected]> * Update docs/Concepts/PreparingForTheMerge.md Co-authored-by: Adrian Sutton <[email protected]> * Update docs/Concepts/PreparingForTheMerge.md Co-authored-by: Adrian Sutton <[email protected]> * review feedback * review feedback * update Merge content * minor edits * updating submodule to latest * minor clarifications * integrate reviewer comments * integrate reviewer feedback * fix Vale install process * extract only vale bin * arrrrrg tar options... Co-authored-by: Adrian Sutton <[email protected]> Co-authored-by: Alexandra Tran <[email protected]> Co-authored-by: Nicolas MASSART <[email protected]>
1 parent 5af8edb commit 18d46b4

File tree

7 files changed

+151
-24
lines changed

7 files changed

+151
-24
lines changed

.circleci/config.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ jobs:
6767
- run:
6868
name: Install dependencies
6969
command: |
70-
curl -sfL https://install.goreleaser.com/github.com/ValeLint/vale.sh | sh -s v2.4.2
70+
wget https://github.com/errata-ai/vale/releases/download/v2.6.0/vale_2.6.0_Linux_64-bit.tar.gz
71+
mkdir bin && tar -xvzf vale_2.6.0_Linux_64-bit.tar.gz -C bin vale
7172
- run:
7273
name: Run Vale
7374
command: |

docs/Concepts/Merge.md

+27-13
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,14 @@ description: What is the Merge?
44

55
# The Merge
66

7-
The Ethereum upgrade known as [The Merge](https://ethereum.org/en/upgrades/merge/) will merge the [Beacon Chain] into
8-
Ethereum Mainnet, turning Mainnet into a combination of an
9-
[execution layer and consensus layer](#execution-and-consensus-clients).
7+
The Ethereum upgrade known as [The Merge](https://ethereum.org/en/upgrades/merge/) will merge the
8+
[Beacon Chain](https://ethereum.org/en/upgrades/beacon-chain/) into Ethereum Mainnet, turning Mainnet into a combination
9+
of an [execution layer and consensus layer](#execution-and-consensus-clients).
1010
The Merge will transition Mainnet from proof of work to [proof of stake consensus](Proof-of-Stake.md).
1111

12+
You can [prepare Teku for The Merge](../HowTo/Prepare-for-The-Merge.md) and
13+
[test Teku with Hyperledger Besu on the Kiln Merge testnet](https://besu.hyperledger.org/en/stable/Tutorials/Merge-Testnet/).
14+
1215
## Execution and consensus clients
1316

1417
After The Merge, a full Ethereum Mainnet node will be a combination of an execution client (previously called an
@@ -22,29 +25,40 @@ Execution and consensus clients communicate with each other using the
2225

2326
### Execution clients
2427

25-
Execution clients, such as [Besu], manage the state and execute transactions on the execution layer.
28+
Execution clients, such as [Besu](https://besu.hyperledger.org/en/stable/), manage the execution layer, including
29+
executing transactions and updating the world state.
2630
Execution clients serve [JSON-RPC API](https://besu.hyperledger.org/en/stable/Reference/API-Methods/) requests and
2731
communicate with each other in a peer-to-peer network.
2832

2933
### Consensus clients
3034

3135
Consensus clients, such as Teku, contain beacon node and validator client implementations.
32-
The beacon node is the primary link to the [Beacon Chain] (consensus layer).
36+
The beacon node is the primary link to the [Beacon Chain](https://ethereum.org/en/upgrades/beacon-chain/) (consensus layer).
3337
The validator client performs [validator duties](Proof-of-Stake.md) on the consensus layer.
3438
Consensus clients serve [REST API](../Reference/Rest_API/Rest.md) requests and communicate with each other in a
3539
peer-to-peer network.
3640

37-
### Run a node
41+
## What happens during The Merge
42+
43+
Before The Merge, the execution and consensus clients' configurations will be
44+
[updated](../HowTo/Prepare-for-The-Merge.md#update-teku) to listen for a certain total terminal difficulty (TTD) to be
45+
reached on the [execution endpoint](../Reference/CLI/CLI-Syntax.md#ee-endpoint).
46+
47+
Teku will periodically request information about the execution client's configuration to check that they agree on the
48+
configuration and can connect.
49+
Teku will log warnings if the configuration doesn't match.
50+
51+
The consensus layer will enable the Merge configuration (Bellatrix) before reaching the TTD.
52+
Once the execution layer blocks reach the TTD, the Beacon Chain will merge into Ethereum Mainnet, and Ethereum will move
53+
to a proof of stake network.
3854

3955
After The Merge, a Mainnet node operator must run both an execution client and a beacon node at the same time.
4056
To become a validator, you must also run a validator client (either
4157
[in the same process as the beacon node](../HowTo/Get-Started/Run-Teku.md#start-the-clients-in-a-single-process) or
42-
[separately](../HowTo/Get-Started/Run-Teku.md#run-the-clients-separately).
43-
44-
You can [test Teku with Besu on the Kiln Merge testnet](https://besu.hyperledger.org/en/latest/Tutorials/Merge-Testnet/).
58+
[separately](../HowTo/Get-Started/Run-Teku.md#run-the-clients-separately)).
4559

46-
You can [run Teku with Besu on Ethereum Mainnet](../HowTo/Get-Started/Connect/Connect-To-Mainnet.md).
60+
After The Merge, in addition to validators earning rewards for performing [validator duties](Proof-of-Stake.md),
61+
[fee recipients](../HowTo/Prepare-for-The-Merge.md#fee-recipient) will also earn rewards for the inclusion of execution
62+
layer transactions.
4763

48-
<!-- links -->
49-
[Beacon Chain]: https://ethereum.org/en/upgrades/beacon-chain/
50-
[Besu]: https://besu.hyperledger.org/en/stable/
64+
You can [prepare Teku for The Merge](../HowTo/Prepare-for-The-Merge.md).

docs/Concepts/Proof-of-Stake.md

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ Proposers are responsible for proposing new consensus blocks, and non-proposing
2828
validating (attesting to) proposed blocks.
2929
Validators are rewarded for proposing and attesting to consensus blocks eventually included in the Beacon Chain, and
3030
penalized for malicious behavior.
31+
Validators also receive [transaction fees](../HowTo/Prepare-for-The-Merge.md#configure-the-fee-recipient) for included
32+
blocks.
3133

3234
Each consensus block contains an execution payload, which contains a list of transactions and other data required to
3335
execute and validate the payload.

docs/HowTo/Prepare-for-The-Merge.md

+100
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
---
2+
description: How to prepare for The Merge
3+
---
4+
5+
# Prepare for The Merge
6+
7+
If you're running one or more Teku beacon nodes and validators on Ethereum Mainnet, prepare for
8+
[The Merge](../Concepts/Merge.md) by:
9+
10+
1. [Configuring the execution client](#configure-the-execution-client).
11+
1. [Configuring the fee recipient](#configure-the-fee-recipient).
12+
1. [Staying up to date on Teku releases](#update-teku).
13+
14+
You can make the configuration changes in Teku's [configuration file](Configure/Use-Configuration-File.md) before The Merge.
15+
16+
You can also
17+
[test Teku with Hyperledger Besu on the Kiln Merge testnet](https://besu.hyperledger.org/en/stable/Tutorials/Merge-Testnet/).
18+
19+
## Configure the execution client
20+
21+
Before The Merge, validators require an [execution client](../Concepts/Merge.md#execution-clients) to get deposits for
22+
block proposals.
23+
Block proposals are intermittent, and a validator can get the data from other blocks if its execution client is offline.
24+
25+
After The Merge, execution clients will play a more crucial role in executing transactions.
26+
Service providers that provide execution layer access, such as Infura, won't be adequate for a beacon node to continue
27+
to function on the network.
28+
You must set up an execution client for each beacon node you maintain, using the following steps.
29+
You can use any execution client with Teku.
30+
31+
!!! note "Notes"
32+
33+
- After The Merge, a beacon node won't be able to have a failover execution client; a validator client will need a
34+
beacon node and execution client pair to provide failover functionality.
35+
- When planning your solution, take into account that the traffic between the execution client and beacon node
36+
will be relatively high.
37+
38+
### 1. Configure the execution endpoint
39+
40+
Specify the execution client endpoint using [`ee-endpoint`](../Reference/CLI/CLI-Syntax.md#ee-endpoint) in the Teku
41+
configuration file.
42+
This can replace [`eth1-endpoint`](../Reference/CLI/CLI-Syntax.md#eth1-endpoint-eth1-endpoints).
43+
44+
!!! important
45+
46+
After The Merge, you can't use `eth1-endpoint` to specify an external execution layer provider.
47+
This option will be replaced by specifying `ee-endpoint` for each beacon node.
48+
49+
### 2. Sync the execution client
50+
51+
Validators can't produce attestations or blocks without a fully synced execution endpoint.
52+
To expedite network participation, sync your execution client on Ethereum Mainnet before the Merge configuration
53+
(Bellatrix) comes online.
54+
55+
### 3. Configure the Java Web Token
56+
57+
Java Web Token (JWT) authentication is used to secure the communication between the beacon node and execution client.
58+
You can generate a JWT using a command line tool, for example:
59+
60+
```bash
61+
openssl rand -hex 32 -out <file>
62+
```
63+
64+
Provide the JWT to Teku using the [`ee-jwt-secret-file`](../Reference/CLI/CLI-Syntax.md#ee-jwt-secret-file)
65+
configuration option, and to the execution client using its configuration options.
66+
For example, provide the JWT to [Hyperledger Besu](https://besu.hyperledger.org/) using the
67+
[`engine-jwt-secret`](https://besu.hyperledger.org/en/stable/Reference/CLI/CLI-Syntax/#engine-jwt-secret) option.
68+
69+
## Configure the fee recipient
70+
71+
After The Merge, execution layer transactions will be included in beacon node blocks, and validators will earn
72+
transaction fees.
73+
You can configure the recipient of these fees for each validator key.
74+
75+
For simpler configurations, configure the beacon node (and validator client if
76+
[run in a separate process](Get-Started/Run-Teku.md#run-the-clients-separately)) with a default fee recipient using
77+
the [`validators-proposer-default-fee-recipient`](../Reference/CLI/CLI-Syntax.md#validators-proposer-default-fee-recipient)
78+
option.
79+
This fee recipient will be used for any duties performed by the beacon node.
80+
81+
For more complex configurations, provide a proposer configuration file that defines the default fee recipient plus
82+
non-default fee recipients for any validators using the
83+
[`validators-proposer-config`](../Reference/CLI/CLI-Syntax.md#validators-proposer-config) option.
84+
85+
A full consensus client (beacon node and validator client combined) can use either configuration option.
86+
A stand-alone validator client should only specify `validators-proposer-config`, and its attached beacon node should
87+
specify `validators-proposer-default-fee-recipient`.
88+
89+
## Update Teku
90+
91+
Once Bellatrix is scheduled for activation on Mainnet, Teku will be released with updated configuration for Mainnet.
92+
Ensure your Teku client and execution client is up to date before Bellatrix is enabled.
93+
94+
You can follow Teku notifications by:
95+
96+
- Signing up to the [release announcements](https://pages.consensys.net/teku-sign-up) email list (release and important
97+
announcements only, no marketing).
98+
- Following Teku on [Twitter](https://twitter.com/Teku_ConsenSys).
99+
- Following the Teku channel in the ConsenSys [Discord](https://discord.gg/7hPv2T6).
100+
- Subscribing to release notifications on GitHub for [Teku](https://github.com/ConsenSys/teku).

docs/Reference/CLI/CLI-Syntax.md

+18-9
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,8 @@ is specified using [`--data-base-path`](#data-base-path-data-path).
288288
ee-endpoint: "http://localhost:8550"
289289
```
290290

291-
URL of the [execution client's](../../Concepts/Merge.md#execution-and-consensus-clients) Engine JSON-RPC APIs.
291+
URL of the [execution client's](../../Concepts/Merge.md#execution-clients) Engine JSON-RPC APIs.
292+
This replaces [`eth1-endpoint`](#eth1-endpoint-eth1-endpoints) after [The Merge](../../Concepts/Merge.md).
292293
293294
### ee-jwt-secret-file
294295
@@ -320,7 +321,7 @@ Shared secret used to authenticate [execution clients](../../Concepts/Merge.md#e
320321
using the Engine JSON-RPC API.
321322
Contents of file must be 32 hex-encoded bytes.
322323
May be a relative or absolute path.
323-
See an [example of how to generate this](https://besu.hyperledger.org/en/latest/Tutorials/Merge-Testnet/).
324+
See an [example of how to generate this](../../HowTo/Prepare-for-The-Merge.md#configure-the-java-web-token).
324325
325326
### eth1-deposit-contract-address
326327
@@ -413,18 +414,25 @@ receiving warnings that the ETH1 node is unavailable.
413414
eth1-endpoint: ["http://localhost:8545","https://mainnet.infura.io/v3/d0e21ccd0b1e4eef7784422eabc51111"]
414415
```
415416
416-
Comma-separated list of JSON-RPC URLs of execution layer (Ethereum 1.0) nodes. Each time Teku makes a call, it finds
417-
the first provider in the list that is available, on the right chain, and in sync. This option must
418-
be specified if running a validator.
417+
Comma-separated list of JSON-RPC URLs of execution layer (Ethereum 1.0) nodes.
418+
Each time Teku makes a call, it finds the first provider in the list that is available, on the right chain, and in sync.
419+
This option must be specified if running a validator.
419420
420421
If not specified (that is, you're running a beacon node only), then provide an initial state
421422
using the [`--initial-state`](#initial-state) option, or start Teku from an existing database using
422423
[`--data-path`](#data-base-path-data-path), which provides the initial state to work from. You do not need to
423424
provide an initial state if running a public network which has already started (for example,
424425
Mainnet or Prater).
425426

426-
If using a cloud-based service such as [Infura], then set the endpoint to the supplied URL. For
427-
example, `https://goerli.infura.io/v3/<Project_ID>`
427+
If using a cloud-based service such as [Infura], then set the endpoint to the supplied URL.
428+
For example, `https://goerli.infura.io/v3/<Project_ID>`.
429+
430+
!!! important
431+
432+
After [The Merge](../../Concepts/Merge.md), you can't use `eth1-endpoint` to specify an external execution layer
433+
provider.
434+
This option will be replaced by [`ee-endpoint`](#ee-endpoint) for each beacon node.
435+
You can [configure your execution client](../../HowTo/Prepare-for-The-Merge.md) before The Merge.
428436
429437
### help
430438
@@ -2377,7 +2385,8 @@ When `LOGGING` is enabled, attestation and block performance is reported as log
23772385
validators-proposer-config: "/home/me/node/proposerConfig.json"
23782386
```
23792387

2380-
Remote URL or local file path to the proposer configuration file, which is a JSON file that specifies:
2388+
Remote URL or local file path to the [proposer configuration file](../../HowTo/Prepare-for-The-Merge.md), which is a
2389+
JSON file that specifies:
23812390

23822391
* `proposer_config` - (optional) A proposer configuration for multiple validator public keys.
23832392
* `default_config` - (required) A default proposer configuration for validator public keys not included in
@@ -2456,7 +2465,7 @@ The default is `false`.
24562465
validators-proposer-default-fee-recipient: "0xFE3B557E8Fb62b89F4916B721be55cEb828dBd73"
24572466
```
24582467

2459-
Default fee recipient for all validator keys.
2468+
Default [fee recipient](../../HowTo/Prepare-for-The-Merge.md#configure-the-fee-recipient) for all validator keys.
24602469
When running a validator, this is an alternative to the `fee_recipient` in the
24612470
[default proposer configuration](#validators-proposer-config).
24622471

mkdocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ nav:
8080
- Specify NAT methods: HowTo/Find-and-Connect/Specifying-NAT.md
8181
- Voluntary exit: HowTo/Voluntary-Exit.md
8282
- Migrate database: HowTo/Migrate-Database.md
83+
- Prepare for The Merge: HowTo/Prepare-for-The-Merge.md
8384
- Troubleshoot:
8485
- Solve common problems: HowTo/Troubleshoot/Troubleshooting.md
8586
- Concepts:

0 commit comments

Comments
 (0)