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: centauri-1 | Latest Version Tag: null

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.22.7.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 picasso
git clone https://github.com/notional-labs/composable-centauri picasso
cd picasso
git checkout null

# Build binaries
make build

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

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

Install Cosmovisor and create a service

# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest

# Create service
sudo tee /etc/systemd/system/picasso.service > /dev/null << EOF
[Unit]
Description picasso-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/.banksy"
Environment="DAEMON_NAME=centaurid"
Environment="UNSAFE_SKIP_BACKUP=true"

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

Initialize the node

# Set node configuration
centaurid config chain-id centauri-1
centaurid config keyring-backend test

# Initialize the node
centaurid init $MONIKER --chain-id centauri-1

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

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

Download latest chain snapshot

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

Start service and check the logs

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

Last updated