Page cover

Installation

⛓️ Requirements for Validators:

Prerequisites:
CPU: 4 cores
Memory: 16GB RAM
Storage: 200Gb of Storage (NVME)
Network Bandwidth: 100 Mbps

1. System updates, installation of required environments:

sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y

2. Install Go:

cd $HOME
VER="1.21.3"
wget "https://golang.org/dl/go$VER.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$VER.linux-amd64.tar.gz"
rm "go$VER.linux-amd64.tar.gz"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin

3. Set Vars:

4. Download Binary:

5. Config and init app:

6. Download genesis and addrbook:

7. Set Seed and Peers:

8. Set custom ports in app.toml:

9. Set custom ports in config.toml file:

10. Config Pruning:

11. Set minium gas price, enable prometheus and disable indexing:

12. Create Service file

13. Reset and Download snapshot:

14. Enable and Start service:

15. Create Wallet:

16. Check Balance:

17. Check sync status:

18. Create Validator:

Last updated