installation


description: Setting up your validator node has never been so easy. Get your validator running in minutes by following step by step instructions.

Installation

Chihuahua
Chihuahua

Network name: Chihuahua | Chain ID: chihuahua-1 | Latest version: v6.0.1 | Custom Port: 129

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.19.8.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 chihuahua
git clone https://github.com/ChihuahuaChain/chihuahua/ chihuahua
cd chihuahua
git checkout v6.0.1

# Build binaries
make install

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.chihuahuad/cosmovisor/genesis/bin
mv ~/go/bin/chihuahuad $HOME/.chihuahuad/cosmovisor/genesis/bin/
rm -rf build

Install Cosmovisor and create a service

# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@v1.4.0

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

[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
WorkingDirectory=$HOME/.chihuahuad
Restart=always
RestartSec=5
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.chihuahuad"
Environment="DAEMON_NAME=chihuahuad"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
Environment="UNSAFE_SKIP_BACKUP=true"
Environment="PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:$HOME/.chihuahuad/cosmovisor/current/bin"

[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable chihuahuad

Initialize the node

# Set node configuration
chihuahuad config chain-id chihuahua-1
chihuahuad config node tcp://localhost:12957

# Initialize the node
chihuahuad init $MONIKER --chain-id chihuahua-1

# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/ChihuahuaChain/chihuahua/main/mainnet/genesis.json > $HOME/.chihuahuad/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/addrbooks/chihuahua/addrbook.json > $HOME/.chihuahuad/config/addrbook.json

# Add seeds
seeds="babc3f3f7804933265ec9c40ad94f4da8e9e0017@seed.rhinostake.com:12956,ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0@seeds.polkachu.com:12956,20e1000e88125698264454a884812746c2eb4807@seeds.lavenderfive.com:12956,cd835cfc413755184239a3dcd24a1f9b5a98627b@chihua.seed.stavr.tech:2016,77cbb35d1df17f48a42e9f157f12f55b691e9f5e@seeds.goldenratiostaking.net:1620,ebc272824924ea1a27ea3183dd0b9ba713494f83@chihuahua-mainnet-seed.autostake.com:27186,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,7549de9e4fada385ec0bd2807f83f7d97c6a15ec@seed.chihuahua.validatus.com:2000,10ed1e176d874c8bb3c7c065685d2da6a4b86475@seed-chihuahua.ibs.team:16673"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $HOME/.chihuahuad/config/config.toml

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0uhuahua\"|" $HOME/.chihuahuad/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/.chihuahuad/config/app.toml

# Set custom ports
sed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:12958\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:12957\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:12960\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:12956\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":12966\"%" $HOME/.chihuahuad/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:12917\"%; s%^address = \":8080\"%address = \":12980\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:12990\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:12991\"%; s%:8545%:12945%; s%:8546%:12946%; s%:6065%:12965%" $HOME/.chihuahuad/config/app.toml

Start service and check the logs

sudo systemctl start chihuahuad && sudo journalctl -u chihuahuad -f --no-hostname -o cat

Sync

To catch up quickly, you can either use a snapshot or state sync

Last updated