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: Aura Network | Chain ID: xstaxy-1 | Latest version: v0.7.3 | Custom Port: 217

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 aura
git clone https://github.com/aura-nw/aura aura
cd aura
git checkout v0.7.3

# Build binaries
make install

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

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

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

Initialize the node

# Set node configuration
aurad config chain-id xstaxy-1
aurad config node tcp://localhost:21757

# Initialize the node
aurad init $MONIKER --chain-id xstaxy-1

# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/aura-nw/mainnet-artifacts/main/xstaxy-1/genesis.json > $HOME/.aura/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/addrbooks/aura/addrbook.json > $HOME/.aura/config/addrbook.json

# Add seeds
seeds="22a0ca5f64187bb477be1d82166b1e9e184afe50@18.143.52.13:26656,ebc272824924ea1a27ea3183dd0b9ba713494f83@auranetwork-mainnet-seed.autostake.com:26966,0b8bd8c1b956b441f036e71df3a4d96e85f843b8@13.250.159.219:26656,400f3d9e30b69e78a7fb891f60d76fa3c73f0ecc@aura.rpc.kjnodes.com:11759,20e1000e88125698264454a884812746c2eb4807@seeds.lavenderfive.com:21756,d05e3f406ed2275ec86957c5983a27768350ac47@seed-node.mms.team:26656"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $HOME/.aura/config/config.toml

# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.001uaura\"|" $HOME/.aura/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/.aura/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:21758\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:21757\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:21760\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:21756\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":21766\"%" $HOME/.aura/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:21717\"%; s%^address = \":8080\"%address = \":21780\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:21790\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:21791\"%; s%:8545%:21745%; s%:8546%:21746%; s%:6065%:21765%" $HOME/.aura/config/app.toml

Start service and check the logs

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

Sync

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

Last updated