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: Coreum | Chain ID: coreum-mainnet-1
| Latest version: v3.0.3
| Custom Port: 244
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 coreum
git clone https://github.com/CoreumFoundation/coreum coreum
cd coreum
git checkout v3.0.3
# Build binaries
make install
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.core/coreum-mainnet-1/cosmovisor/genesis/bin
mv ~/go/bin/cored $HOME/.core/coreum-mainnet-1/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/cored.service > /dev/null << EOF
[Unit]
Description=osmosis node service
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
WorkingDirectory=$HOME/.core/coreum-mainnet-1
Restart=always
RestartSec=5
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.core/coreum-mainnet-1"
Environment="DAEMON_NAME=cored"
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/.core/coreum-mainnet-1/cosmovisor/current/bin"
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable cored
Initialize the node
# Set node configuration
cored config chain-id coreum-mainnet-1
cored config node tcp://localhost:24457
# Initialize the node
cored init $MONIKER --chain-id coreum-mainnet-1
# Download genesis and addrbook
curl -Ls https://raw.githubusercontent.com/CoreumFoundation/coreum/master/genesis/coreum-mainnet-1.json > $HOME/.core/coreum-mainnet-1/config/genesis.json
curl -Ls https://snapshots.lavenderfive.com/addrbooks/coreum/addrbook.json > $HOME/.core/coreum-mainnet-1/config/addrbook.json
# Add seeds
seeds="0df493af80fbaad41b9b26d6f4520b39ceb1d210@seed-iron.mainnet-1.coreum.dev:26656,cba16f4f32707d70a2a2d10861fac897f1e9aaa1@seed-nickle.mainnet-1.coreum.dev:26656,67ecf3e890b2f77b13fc872c8f11f868c283be6e@rpc.coreum.nodexcapital.com:14156,8542cd7e6bf9d260fef543bc49e59be5a3fa9074@seed.publicnode.com:26656,10ed1e176d874c8bb3c7c065685d2da6a4b86475@seed-coreum.ibs.team:16674"
sed -i -e "s|^seeds *=.*|seeds = \"$seeds\"|" $HOME/.core/coreum-mainnet-1/config/config.toml
# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.03125ucore\"|" $HOME/.core/coreum-mainnet-1/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/.core/coreum-mainnet-1/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:24458\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:24457\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:24460\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:24456\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":24466\"%" $HOME/.core/coreum-mainnet-1/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:24417\"%; s%^address = \":8080\"%address = \":24480\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:24490\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:24491\"%; s%:8545%:24445%; s%:8546%:24446%; s%:6065%:24465%" $HOME/.core/coreum-mainnet-1/config/app.toml
Start service and check the logs
sudo systemctl start cored && sudo journalctl -u cored -f --no-hostname -o cat
Sync
To catch up quickly, you can either use a snapshot or state sync
Last updated