|
| 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). |
0 commit comments