Installation
install dependencies, if needed
sudo apt update && sudo apt upgrade -yInstall GO , if you already install go you can skip to next step
sudo rm -rf /usr/local/go
curl -L https://go.dev/dl/go1.21.6.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> $HOME/.bash_profile
source .bash_profileSett Variable
echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="Node"" >> $HOME/.bash_profile
echo "export WARDEN_CHAIN_ID="buenavista-1"" >> $HOME/.bash_profile
echo "export WARDEN_PORT="15"" >> $HOME/.bash_profile
source $HOME/.bash_profileDownload Warden Binaries
Config and initialize your node
Download Genesis and Addrbook
Add Seed
Sett Minimum Gas Price
Sett Pruning
Sett custom port on app.toml
Sett Custom port on config.toml
Create Service
Enable and Start Service
Last updated