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

Pylons
Pylons

Network name: Pylons | Chain ID: pylons-mainnet-1 | Latest version: v1.1.4 | Custom Port: 194

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 zst 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 pylons
git clone https://github.com/Pylons-tech/pylons.git pylons
cd pylons
git checkout v1.1.4

# Build binaries
make install

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.pylons/cosmovisor/genesis/bin
mv ~/go/bin/pylonsd $HOME/.pylons/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/pylonsd.service > /dev/null << EOF
[Unit]
Description=osmosis node service
After=network-online.target

[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
WorkingDirectory=$HOME/.pylons
Restart=always
RestartSec=5
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.pylons"
Environment="DAEMON_NAME=pylonsd"
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/.pylons/cosmovisor/current/bin"

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

Initialize the node

# Set node configuration
pylonsd config chain-id pylons-mainnet-1
pylonsd config node tcp://localhost:19457

# Initialize the node
pylonsd init $MONIKER --chain-id pylons-mainnet-1

# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/Pylons-tech/pylons/main/networks/pylons-mainnet-1/genesis.json > $HOME/.pylons/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/addrbooks/pylons/addrbook.json > $HOME/.pylons/config/addrbook.json

# Add seeds
seeds="0d25c5db4cbdc4171c8272278040db774011c268@5.161.229.9:26656,e9e64412c3d43de4f2e5f7a3e9289b4190e4ed78@88.198.32.17:33656,030e6a01aef8913bcee33b957e9204986203bc81@135.125.4.73:46656"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $HOME/.pylons/config/config.toml

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0ubedrock\"|" $HOME/.pylons/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/.pylons/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:19458\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:19457\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:19460\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:19456\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":19466\"%" $HOME/.pylons/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:19417\"%; s%^address = \":8080\"%address = \":19480\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:19490\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:19491\"%; s%:8545%:19445%; s%:8546%:19446%; s%:6065%:19465%" $HOME/.pylons/config/app.toml

Start service and check the logs

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

Sync

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

Last updated