Node setup for Saga Network

Node setup requres some basic knowlage of Linux OS and server managment. Setting up the node can be daunting and chalanging task. This is a short guide how to set up the node.

Update the system and install the essentials:

sudo apt update && sudo apt full-upgrade -y && apt install build-essential 
sudo apt install vim /or apt install nano 
sudo apt install entr jq make git ufw wget 

Install GO and Cosmovisor

sudo rm -r /usr/local/go/
wget https://golang.org/dl/go1.21.8.linux-amd64.tar.gz
sudo tar -C /usr/local -xzf go1.21.8.linux-amd64.tar.gz
rm go1.21.8.linux-amd64.tar.gz
echo 'export PATH=$PATH:/usr/local/go/bin' >> $HOME/.bashrc
echo 'export PATH=$PATH:$HOME/go/bin' >> $HOME./bashrc
source $HOME/.bashrc
 
# Install cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/[email protected]
sudo mv ~/go/bin/cosmovisor /usr/local/bin

Clone the repository and install node binary

cd $HOME 
git clone https://github.com/sagaxyz/ssc.git
cd nibiru  # always doublecheck from the official team for the right version
git checkout v0.1.5
make install

Set up cosmovisor

mkdir -p $HOME/.ssc/cosmovisor/genesis/bin
mkdir -p $HOME/.ssc/cosmovisor/upgrades
mv $HOME/go/bin/sscd $HOME/.ssc/cosmovisor/genesis/bin/
sudo ln -s $HOME/.ssc/cosmovisor/genesis $HOME/.ssc/cosmovisor/current -f
sudo ln -s $HOME/.ssc/cosmovisor/current/bin/sscd /usr/local/bin/sscd -f
 
# Create service file
 
sudo tee /etc/systemd/system/saga.service > /dev/null <<EOF
[Unit]
Description=Saga node”
After=network-online.target
 
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
WorkingDirectory=$HOME/.ssc
Restart=on-failure 
RestartSec=5
LimitNOFILE=65535
Environment=”DAEMON_NAME=sscd”
Environment=”DAEMON_HOME=$HOME/.ssc”
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/.ssc/cosmovisor/current/bin”
 
[Install]
WantedBy=multi-user.target
EOF
 
sudo systemctl daemon-reload
sudo systemctl enable saga.service

Set up the node

# Please when using this guide replace “YOUR_MONIKER” with name for your node.
 
sscd init YOUR_MONIKER --chain-id ssc-1
 
# Get address book and genesis.json
wget https://raw.githubusercontent.com/Cogwheel-Validator/docs/main/files/saga/genesis.json -O $HOME/.ssc/config/genesis.json
wget https://raw.githubusercontent.com/Cogwheel-Validator/docs/main/files/saga/addrbook.json -O $HOME/.ssc/config/addrbook.json
 
#Set minimum gas prices
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0usaga\"|" $HOME/.ssc/config/app.toml

Use snapshot or state sync to catch up.

Links to snapshots. You only need from one provider.

https://polkachu.com/tendermint_snapshots/saga
https://services.kjnodes.com/mainnet/saga/snapshot/

Start the node

sudo systemctl start saga && sudo journalctl -fu saga -o cat