Lava Node Installation Guide
Install Dependencies
sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential fail2ban ufw
sudo apt -qy upgradeConfigure Moniker
MONIKER="<your-moniker-name>"Install Go
sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.20.10.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)Build Binaries
cd $HOME
rm -rf lava
git clone https://github.com/lavanet/lava.git
cd lava
git checkout v2.0.0Cosmovisor Setup
Create Service
Enable Service
Initialize Node
Download Genesis and Addrbook
Configure Seeds
Configure Gas Prices
Pruning Setting
Download Snapshots
Start Service
Last updated