Loyal Node Installation Guide

Chain ID: loyal-main-02 | Current Node Version: v0.25.2

Install Go and Cosmovisor

Feel free to skip this step if you already have Go and Cosmovisor.

Install Go

We will use Go v1.21.1 as example here. The code below also cleanly removes any previous Go installation.

sudo rm -rvf /usr/local/go/
wget https://golang.org/dl/go1.21.1.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.21.1.linux-amd64.tar.gz
rm go1.21.1.linux-amd64.tar.gz

Configure Go

Unless you want to configure in a non-standard way, then set these in the ~/.profile file.

export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin

Install Cosmovisor

We will use Cosmovisor v1.0.0 as example here.

go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/[email protected]

Install Node

Install the current version of node binary.

git clone https://github.com/LoyalLabs/loyal loyal
cd loyal
git checkout v0.25.2
make install

Configure Node

Initialize Node

Please replace YOUR_MONIKER with your own moniker.

loyald init YOUR_MONIKER --chain-id loyal-main-02

Download Genesis

The genesis file link below is Polkachu's mirror download. The best practice is to find the official genesis download link.

wget -O genesis.json https://snapshots.polkachu.com/genesis/loyal/genesis.json --inet4-only
mv genesis.json ~/.loyal/config

Configure Seed

Using a seed node to bootstrap is the best practice in our view. Alternatively, you can use addrbook or persistent_peers.

sed -i 's/seeds = ""/seeds = "[email protected]:17856"/' ~/.loyal/config/config.toml

Launch Node

Configure Cosmovisor Folder

Create Cosmovisor folders and load the node binary.

# Create Cosmovisor Folders
mkdir -p ~/.loyal/cosmovisor/genesis/bin
mkdir -p ~/.loyal/cosmovisor/upgrades

# Load Node Binary into Cosmovisor Folder
cp ~/go/bin/loyald ~/.loyal/cosmovisor/genesis/bin

Create Service File

Create a loyal.service file in the /etc/systemd/system folder with the following code snippet. Make sure to replace USER with your Linux user name. You need sudo previlege to do this step.

[Unit]
Description="loyal node"
After=network-online.target

[Service]
User=USER
ExecStart=/home/USER/go/bin/cosmovisor start
Restart=always
RestartSec=3
LimitNOFILE=4096
Environment="DAEMON_NAME=loyald"
Environment="DAEMON_HOME=/home/USER/.loyal"
Environment="DAEMON_ALLOW_DOWNLOAD_BINARIES=false"
Environment="DAEMON_RESTART_AFTER_UPGRADE=true"
Environment="UNSAFE_SKIP_BACKUP=true"

[Install]
WantedBy=multi-user.target

Download Snapshot

Please use our popular snapshot download service to download and extract Loyal snapshot.

Start Node Service

# Enable service
sudo systemctl enable loyal.service

# Start service
sudo service loyal start

# Check logs
sudo journalctl -fu loyal

Other Considerations

This installation guide is the bare minimum to get a node started. You should consider the following as you become a more experienced node operator.

  • Use Ansible script to automate the node installation process
  • Configure firewall to close most ports while only leaving the p2p port (typically 26656) open
  • Use custom ports for each node so you can run multiple nodes on the same server

If you find a bug in this installation guide, please reach out to our Discord Server and let us know.