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: perun-1 | Latest Version Tag: v1.1.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 c4ed
git clone https://github.com/chain4energy/c4e-chain.git
cd c4ed
git checkout v1.1.0

# Build binaries
make build

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

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

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/c4ed.service > /dev/null << EOF
[Unit]
Description=c4e-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/.c4e-chain"
Environment="DAEMON_NAME=c4ed"
Environment="UNSAFE_SKIP_BACKUP=true"

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

Initialize the node

# Set node configuration
c4ed config chain-id perun-1
c4ed config keyring-backend test

# Initialize the node
c4ed init $MONIKER --chain-id perun-1

# Download genesis and addrbook
curl -Ls https://snapshots.stakeandrelax.net/c4e/genesis.json > $HOME/.c4e-chain/config/genesis.json
curl -Ls https://snapshots.stakeandrealx.net/c4e/addrbook.json > $HOME/.c4e-chain/config/addrbook.json

# Add seeds
sed -i -e "s|^seeds *=.*|seeds = \"[email protected]\"|" $HOME/.c4e-chain/config/config.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/.c4e-chain/config/app.toml

Download latest chain snapshot

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

Start service and check the logs

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

Last updated