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

Injective
Injective

Network name: Injective | Chain ID: injective-1 | Latest version: v1.12.1-1705909076 | Custom Port: 143

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 injective
git clone https://github.com/InjectiveLabs/injective-chain-releases injective
cd injective
git checkout v1.12.1-1705909076

# Build binaries
make install

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

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

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

Initialize the node

# Set node configuration
injectived config chain-id injective-1
injectived config node tcp://localhost:14357

# Initialize the node
injectived init $MONIKER --chain-id injective-1

# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/InjectiveLabs/mainnet-config/master/10001/genesis.json > $HOME/.injectived/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/addrbooks/injective/addrbook.json > $HOME/.injectived/config/addrbook.json

# Add seeds
seeds="38c18461209694e1f667ff2c8636ba827cc01c86@176.9.143.252:11751,4f9025feca44211eddc26cd983372114947b2e85@176.9.140.49:11751,c98bb1b889ddb58b46e4ad3726c1382d37cd5609@65.109.51.80:11751,23d0eea9bb42316ff5ea2f8b4cd8475ef3f35209@65.109.36.70:11751,f9ae40fb4a37b63bea573cc0509b4a63baa1a37a@15.235.114.80:11751,7f3473ddab10322b63789acb4ac58647929111ba@15.235.13.116:11751,ade4d8bc8cbe014af6ebdf3cb7b1e9ad36f412c0@seeds.polkachu.com:14356,ebc272824924ea1a27ea3183dd0b9ba713494f83@injective-mainnet-seed.autostake.com:26726,20e1000e88125698264454a884812746c2eb4807@seeds.lavenderfive.com:14356,1846e76e14913124a07e231586d487a0636c0296@tenderseed.ccvalidators.com:26007,5a1cd1a7da5aab3e3075fbae0a905c7256e48193@seeds.goldenratiostaking.net:1635,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,c28827cb96c14c905b127b92065a3fb4cd77d7f6@seeds.whispernode.com:14356,858c86e2590f82934b8483ed184afd88416a7b31@seed-injective-01.stakeflow.io:2106"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $HOME/.injectived/config/config.toml

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"160000000inj\"|" $HOME/.injectived/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/.injectived/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:14358\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:14357\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:14360\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:14356\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":14366\"%" $HOME/.injectived/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:14317\"%; s%^address = \":8080\"%address = \":14380\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:14390\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:14391\"%; s%:8545%:14345%; s%:8546%:14346%; s%:6065%:14365%" $HOME/.injectived/config/app.toml

Start service and check the logs

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

Sync

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

Last updated