This guide will walk you through the process of installing and running a Shardeum Validator Node on your system. Please follow the steps below carefully.
Before you begin, ensure you have the following prerequisites installed on your system:
For Linux:
sudo apt-get install curl
For MacOS:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Add Homebrew to your PATH
:
echo 'eval "$(/opt/homebrew/bin/brew shellenv)"'
eval "$(/opt/homebrew/bin/brew shellenv)"
For Linux:
sudo apt update
For MacOS:
brew update
For Linux:
Install docker with docker.io
sudo apt install docker.io
For MacOS:
brew install docker
Verify Docker installation by running
docker --version
(should return version 20.10.12 or higher).
For Linux:
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
Setup permissions for docker-compose using
sudo chmod +x /usr/local/bin/docker-compose
For MacOS:
brew install docker-compose
Verify docker-compose installation by running
docker-compose --version
(should return version 1.29.2 or higher).
Choose one of the following methods to download and run the installation script:
Using curl
curl -O https://raw.githubusercontent.com/shardeum/validator-dashboard/main/installer.sh && chmod +x installer.sh && ./installer.sh
Using wget
wget https://raw.githubusercontent.com/shardeum/validator-dashboard/main/installer.sh && chmod +x installer.sh && ./installer.sh
Follow the instructions provided by the installer script. Ensure you input the correct Archiver and Monitor IP addresses for the network you wish your validator to join.
If you are behind a router and you are using ports 9001 and 10001 for p2p communication, make sure ports 9001 and 10001, are forwarded (be careful doing this since it will modify your firewall). More info on router port forwarding: https://www.noip.com/support/knowledgebase/general-port-forwarding-guide/
After the installation process completes, you can start the validator using either the web-based dashboard or the command line:
Using Web Dashboard:
localhost:8080
or ServerIP:8080Start Node
button in the top right white box.Using Command Line:
$HOME/.shardeum
)../shell
.operator-cli start
to start the validator node.Open the page https://docs.shardeum.org/docs/network/endpoints and use the setting for the Atomium network.
Join the Shardeum Discord and claim tokens from the faucet Channel by running the /faucet <account>
command.
localhost:8080
or ServerIP:8080 (or the port you picked)Start Node
button.Connect the wallet and stake 10 SHM.
Now check your node status, if your node status is on Standby
and you have 10 SHM or more staked, your validator node is setup correctly. The network will automatically add your validator to be active in the network. The time to be added as an active validator will vary based on network load and validators in the network.
./docker-up.sh
This will be more effective when the info gathered in the install script is stored in persisent volume that is mounted by the container.
./docker-down.sh
./clean.sh
This will clean up the last (lastest) build. Just meant to save a few key strokes.
Instructions for the user wanting to run a Shardeum validator node can be found here: https://docs.shardeum.org/docs/node/run/validator
To set up the dashboard installer script for different versions of the Shardeum network follow the steps below:
.env
file that defines the network details, modify the script to specify the details of the new network.
The script should now correctly set up the Dashboard for your new network.Contributions are very welcome! Everyone interacting in our codebases, issue trackers, and any other form of communication, including chat rooms and mailing lists, is expected to follow our code of conduct so we can all enjoy the effort we put into this project.