Installation

Chain ID: buenavista-1Latest Version Tag: v0.3.0

Setup validator name

Replace **YOUR_MONIKER_GOES_HERE** with your validator name
MONIKER="YOUR_MONIKER_GOES_HERE"

Install dependencies

Update system and install build tools

sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade

Install Go

sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.21.9.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)

Download and build binaries

# Clone project repository
cd $HOME
rm -rf wardenprotocol
git clone https://github.com/warden-protocol/wardenprotocol/
cd wardenprotocol
git checkout v0.3.0

# Build and install binaries
make install

# Create service
sudo tee /etc/systemd/system/wardend.service > /dev/null <<EOF
[Unit]
Description=wardend
After=network-online.target

[Service]
User=$USER
ExecStart=$(which wardend) start
Restart=on-failure
RestartSec=3
LimitNOFILE=65535

[Install]
WantedBy=multi-user.target
EOF

Initialize the node

# Set node configuration
wardend config chain-id buenavista-1
wardend config keyring-backend file

# Initialize the node
wardend init $MONIKER --chain-id buenavista-1

# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/warden-protocol/networks/main/testnets/buenavista/genesis.json > $HOME/.warden/config/genesis.json
curl -Ls https://github.com/dvjromashkin/guides/raw/main/warden-testnet/addrbook.json > $HOME/.warden/config/addrbook.json

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.025uward\"|" $HOME/.warden/config/app.toml

# Set pruning
sed -i \
  -e 's|^pruning *=.*|pruning = "custom"|' \
  -e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
  -e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
  -e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
  $HOME/.warden/config/app.toml

### Start service and check the logs

```bash
sudo systemctl start wardend && sudo journalctl -u wardend -f -o cat