🦥
Services
  • 🖤README
  • MAINNET
    • AGORIC
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • CELESTIA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • COSMOS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • DYMENSION
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • ELYS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • FXCORE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • JACKAL
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • JUNO
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • MANTRA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • NEUTRON
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • NOIS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • OSMOSIS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • PASSAGE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • PERSISTENCE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • PICASSO
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • QUASAR
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • SAGA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • STARGAZE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • STRIDE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
  • TESTNET
    • BABYLON
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • CELESTIA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • NATIVE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • OKP4
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • QUASAR
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • STORY
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
Powered by GitBook
On this page
  • Setup validator name
  • Install dependencies
  • Download and build binaries
  • Install Cosmovisor and create a service
  • Initialize the node
  • Download latest chain snapshot
  • Start service and check the logs
  1. TESTNET
  2. CELESTIA

Installation

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

PreviousCELESTIANextUpgrade

Last updated 3 months ago

Chain ID: mocha-4 | Latest Version Tag: 3.2.0-mocha

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 celestia
git clone https://github.com/celestiaorg/celestia-app.git celestia
cd celestia
git checkout 3.2.0-mocha

# Build binaries
make build

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

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

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

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

Initialize the node

# Set node configuration
celestia-appd config chain-id mocha-4
celestia-appd config keyring-backend test

# Initialize the node
celestia-appd init $MONIKER --chain-id mocha-4

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

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

Download latest chain snapshot

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

Start service and check the logs

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