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

Oraichain
Oraichain

Network name: Oraichain | Chain ID: Oraichain | Latest version: v0.42.4 | Custom Port: 266

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 oraichain
git clone https://github.com/oraichain/orai oraichain
cd oraichain
git checkout v0.42.4

# Build binaries
make install

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

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

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

Initialize the node

# Set node configuration
oraid config chain-id Oraichain
oraid config node tcp://localhost:26657

# Initialize the node
oraid init $MONIKER --chain-id Oraichain

# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/oraichain/oraichain-static-files/master/genesis.json > $WORKSPACE/.oraid/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/addrbooks/oraichain/addrbook.json > $WORKSPACE/.oraid/config/addrbook.json

# Add seeds
seeds="e18f82a6da3a9842fa55769955d694f62f7f48bd@seed1.orai.zone:26656,defeea41a01b5afdb79ef2af155866e122797a9c@seed4.orai.zone:26656,49165f4ef94395897d435f144964bdd14413ea28@seed.orai.synergynodes.com:26656,ebc272824924ea1a27ea3183dd0b9ba713494f83@oraichain-mainnet-seed.autostake.com:27436,f223f1be06ef35a6dfe54995f05daeb1897d94d7@seed-node.mms.team:42656,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,fe0a0d46eb5436905bf8465f83d2da5a503bf4eb@mainnet-seed.konsortech.xyz:33165,bdf3f54758e6a712d13fbcda9f49b01f3c1c73b2@seed.orai.mortysnode.nl:26656,4babdcd4c81d589e789db3b294eebcd779f2227c@orai.seed.stavr.tech:2056,b85358e035343a3b15e77e1102857dcdaf70053b@seeds.bluestake.net:25956,1c6e0f2b3317fefb772fb528269c151735a5f0cb@seeds.owallet.io:10005"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $WORKSPACE/.oraid/config/config.toml

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0orai\"|" $WORKSPACE/.oraid/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"|' \
  $WORKSPACE/.oraid/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:26658\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:26657\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:26660\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:26656\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":26666\"%" $WORKSPACE/.oraid/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:26617\"%; s%^address = \":8080\"%address = \":26680\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:26690\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:26691\"%; s%:8545%:26645%; s%:8546%:26646%; s%:6065%:26665%" $WORKSPACE/.oraid/config/app.toml

Start service and check the logs

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

Sync

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

Last updated