Charon Distributed Validator Node

Official documentation:

Validator setup instructionsarrow-up-right

Creating and backing up a private key for charon

Update packages

sudo apt update && sudo apt upgrade -y

Install dependencies

sudo apt install curl build-essential git wget jq tmux chrony -y

Install Docker

sudo -i
cd $HOME
apt purge docker docker-engine docker.io containerd docker-compose -y
rm /usr/bin/docker-compose /usr/local/bin/docker-compose
curl -fsSL https://get.docker.com -o get-docker.sh && sh get-docker.sh
systemctl restart docker
curl -SL https://github.com/docker/compose/releases/download/v2.5.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
ln -s /usr/local/bin/docker-compose /usr/bin/docker-compose

Creating an enr private key

You should expect to see a console output like

!! Backup this private key

Fill form

Submit the created ENR public address (the console output starting with enr:-... not the contents of the private key file) to the appropriate typeformarrow-up-right.

Last updated