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

Network name: Artela Network | Chain ID: artela_11820-1 | Latest version: v0.4.9-rc9 | Custom Port: 278

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 artela
git clone https://github.com/artela-network/artela artela
cd artela
git checkout v0.4.9-rc9

# Build binaries
make install

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

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

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

Initialize the node

# Set node configuration
artelad config chain-id artela_11820-1
artelad config node tcp://localhost:27857

# Initialize the node
artelad init $MONIKER --chain-id artela_11820-1

# Download genesis and addrbook
curl -Ls https://snapshots.polkachu.com/testnet-genesis/artela/genesis.json > .artelad/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/testnet-addrbooks/artela/addrbook.json > .artelad/config/addrbook.json

# Add seeds
seeds="ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0@testnet-seeds.polkachu.com:27856"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" .artelad/config/config.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"|' \
  .artelad/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:27858\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:27857\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:27860\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:27856\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":27866\"%" .artelad/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:27817\"%; s%^address = \":8080\"%address = \":27880\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:27890\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:27891\"%; s%:8545%:27845%; s%:8546%:27846%; s%:6065%:27865%" .artelad/config/app.toml

Start service and check the logs

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

Sync

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

Last updated