2022-07-21 18:19:47 +00:00
# Start validating
2020-10-26 17:12:37 +00:00
2023-04-11 15:42:35 +00:00
Once your keys have been [imported ](./keys.md ), it is time to configure a [fee recipient ](./suggested-fee-recipient.md ) and restart the beacon node to start validating.
2022-06-19 07:24:01 +00:00
2022-11-13 06:59:55 +00:00
## Steps
2020-11-05 15:35:41 +00:00
2022-11-13 06:59:55 +00:00
### 1. Choose a fee recipient
2023-04-11 15:42:35 +00:00
The [fee recipient ](./suggested-fee-recipient.md ) is an Ethereum address that receives transaction fees from the blocks that your validators produce.
You can set up a separate address or reuse the address from which you funded your deposits.
2022-11-13 06:59:55 +00:00
### 2. (Re)start the node
2023-04-27 21:30:58 +00:00
Press `Ctrl-c` to stop the beacon node if it's running, then use the same command as before to run it again, this time adding the `--suggested-fee-recipient` option in addition to `--web3-url` :
2022-06-19 07:24:01 +00:00
2022-07-22 19:47:24 +00:00
=== "Mainnet"
2022-07-24 20:13:47 +00:00
```sh
2022-11-13 06:59:55 +00:00
./run-mainnet-beacon-node.sh --web3-url=http://127.0.0.1:8551 --suggested-fee-recipient=0x...
2022-07-24 20:13:47 +00:00
```
2022-07-22 19:47:24 +00:00
=== "Prater"
2022-07-24 20:13:47 +00:00
```sh
2022-11-13 06:59:55 +00:00
./run-prater-beacon-node.sh --web3-url=http://127.0.0.1:8551 --suggested-fee-recipient=0x...
2022-07-24 20:13:47 +00:00
```
2020-11-24 14:00:35 +00:00
2022-11-13 06:59:55 +00:00
### 3. Check the logs
2020-11-02 16:30:25 +00:00
2023-04-11 15:42:35 +00:00
Your beacon node will launch and connect your validator to the beacon chain network.
To check that keys were imported correctly, look for `Local validator attached` in the logs:
2020-10-26 17:12:37 +00:00
```
2022-06-19 07:24:01 +00:00
INF 2020-11-18 11:20:00.181+01:00 Launching beacon node
2020-11-18 11:20:54 +00:00
...
NOT 2020-11-18 11:20:02.091+01:00 Local validator attached
2020-10-26 17:12:37 +00:00
```
2022-07-21 18:19:47 +00:00
2023-04-11 15:42:35 +00:00
Congratulations!
Your node is now ready to perform validator duties.
Depending on when the deposit was made, it may take a while before the first attestation is sent — this is normal.