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: Rizon | Chain ID: titan-1
| Latest version: v0.4.1
| Custom Port: 262
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 rizon
git clone https://github.com/rizon-world/rizon rizon
cd rizon
git checkout v0.4.1
# Build binaries
make install
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.rizon/cosmovisor/genesis/bin
mv ~/go/bin/rizond $HOME/.rizon/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/rizond.service > /dev/null << EOF
[Unit]
Description=osmosis node service
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
WorkingDirectory=$HOME/.rizon
Restart=always
RestartSec=5
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.rizon"
Environment="DAEMON_NAME=rizond"
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/.rizon/cosmovisor/current/bin"
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable rizond
Initialize the node
# Set node configuration
rizond config chain-id titan-1
rizond config node tcp://localhost:26257
# Initialize the node
rizond init $MONIKER --chain-id titan-1
# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/rizon-world/mainnet/master/genesis.json > $HOME/.rizon/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/addrbooks/rizon/addrbook.json > $HOME/.rizon/config/addrbook.json
# Add seeds
seeds="83c9cdc2db2b4eff4acc9cd7d664ad5ae6191080@seed-1.mainnet.rizon.world:26656,ae1476777536e2be26507c4fbcf86b67540adb64@seed-2.mainnet.rizon.world:26656,8abf316257a264dc8744dee6be4981cfbbcaf4e4@seed-3.mainnet.rizon.world:26656,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,f9b189e17add85a42a36d05fc57ed83c957e011e@seed-rizon.ibs.team:16657,f1dc52dd12a4e96d3ef2aa3ff1e6f648b4d232da@seed-node.mms.team:38656"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $HOME/.rizon/config/config.toml
# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0uatolo\"|" $HOME/.rizon/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/.rizon/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:26258\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:26257\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:26260\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:26256\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":26266\"%" $HOME/.rizon/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:26217\"%; s%^address = \":8080\"%address = \":26280\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:26290\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:26291\"%; s%:8545%:26245%; s%:8546%:26246%; s%:6065%:26265%" $HOME/.rizon/config/app.toml
Start service and check the logs
sudo systemctl start rizond && sudo journalctl -u rizond -f --no-hostname -o cat
Sync
To catch up quickly, you can either use a snapshot or state sync
Last updated