Installation

Setting up your validator node has never been so easy. Get your validator running in minutes by following step by step instructions.

Chain ID: juno-1 | Latest Version Tag: v12.0.0

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.4.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 juno
git clone https://github.com/CosmosContracts/juno
cd juno
git checkout v12.0.0

# Build binaries
make build

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.juno/cosmovisor/genesis/bin
mv target/dist/juno $HOME/.juno/cosmovisor/genesis/bin/
rm -rf build

# Create application symlinks
ln -s $HOME/.juno/cosmovisor/genesis $HOME/.juno/cosmovisor/current
sudo ln -s $HOME/.juno/cosmovisor/current/bin/juno /usr/local/bin/juno

Install Cosmovisor and create a service

# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/[email protected]

# Create service
sudo tee /etc/systemd/system/junod.service > /dev/null << EOF
[Unit]
Description=juno-main node service
After=network-online.target

[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.juno"
Environment="DAEMON_NAME=junod"
Environment="UNSAFE_SKIP_BACKUP=true"

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

Initialize the node

# Set node configuration
junod config chain-id juno-1
junod config keyring-backend test

# Initialize the node
junod init $MONIKER --chain-id juno-1
# Download genesis and addrbook
curl -Ls https://snapshots.stakeandrelax.net/juno/genesis.json > $HOME/.juno/config/genesis.json
curl -Ls https://snapshots.stakeandrealx.net/juno/addrbook.json > $HOME/.juno/config/addrbook.json

# Add seeds
sed -i -e "s|^seeds *=.*|seeds = \"61c5f071d227cf833345a8b793f0270b64830edb@juno-rpc.stakeandrelax.net:12657\"|" $HOME/.juno/config/config.toml

# Set minimum gas price
sed -i.bak -e "s/^minimum-gas-prices *=.*/minimum-gas-prices = \"0.0025ujuno,0.001ibc\/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9\"/" ~/.juno/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/.juno/config/app.toml

Download latest chain snapshot

curl -L https://snapshots.stakeandrelax.net/juno/snapshot_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.juno
[[ -f $HOME/.juno/data/upgrade-info.json ]] && cp $HOME/.juno/data/upgrade-info.json $HOME/.juno/cosmovisor/genesis/upgrade-info.json

Start service and check the logs

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

Last updated