Installation
π§© 1. Install Dependencies
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.22.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"
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source ~/.bash_profile
mkdir -p ~/go/binβοΈ 3. Clone & Build Allora Binary
π¦ 4. Set Environment Variables
π± 5. Initialize Node
π 6. Download Genesis, Peers, and Seeds
π§ 7. Enable State Sync (Optional)
βοΈ 8. Customize Ports
π§Ή 9. Pruning
ποΈ 10. Create Systemd Service
βΆοΈ 11. Start Node
π 12. Create Wallet
π 13. Check Sync
π° 14. Check Balance
π§ 15. Create Validator
Last updated