Validator Node

Celestia Mainnet guide

Server preparation

sudo apt update && sudo apt upgrade -y
sudo apt install curl tar wget clang pkg-config libssl-dev jq build-essential bsdmainutils git make ncdu gcc git jq chrony liblz4-tool -y

GO 1.24.1

cd $HOME
VER="1.24.1"
wget "https://golang.org/dl/go$VER.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$VER.linux-amd64.tar.gz"
rm "go$VER.linux-amd64.tar.gz"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin

Build

cd $HOME && mkdir -p go/bin/
git clone https://github.com/celestiaorg/celestia-app.git 
cd celestia-app
git checkout v6.4.10
make install

Result

  • version: 6.4.10

  • commit: 0b26ea0c


Initiation

circle-info

Change <moniker> to your value, moniker is the name of your validator.


Create / recover wallet

circle-info

Change <walletname> to the name of your wallet


Download genesis and addrbook

Result

  • 9727aac9bbfb021ce7fc695a92f901986421283a891b89e0af97bc9fad187793


Set up the minimum gas price and Peers/Seeds/Filter peers/MaxPeers


Pruning (optional)

Create a service file

Start

Create validator

circle-info

Change walletName, YOUR_MONIKER_NAME, YOUR_KEYBASE_ID, YOUR_DETAILS and YOUR_WEBSITE_URL to your values

Delete node

Last updated