πŸ†™ Upgrade mainnet

βš™οΈ Current version 3.5.7

You can check the version of your validator with the following command:

curl http://localhost:17690/health? | jq

If the version is different from the current one, run the following command, and then check your version again

For the sake of convenience, we have named the docker elixir-mainnet in our guide, but you may have it simply as elixir, so in that case just change the command

docker kill elixir-mainnet
docker rm elixir-mainnet
docker pull elixirprotocol/validator --platform linux/amd64
docker run -d \
  --env-file $HOME/elixir/validator.env \
  --name elixir-mainnet \
  -p 17690:17690 \
  elixirprotocol/validator


Last updated