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 -yGO 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/binBuild
cd $HOME && mkdir -p go/bin/
git clone https://github.com/celestiaorg/celestia-app.git
cd celestia-app
git checkout v6.4.10
make installInitiation
Create / recover wallet
Download genesis and addrbook
Set up the minimum gas price and Peers/Seeds/Filter peers/MaxPeers
Pruning (optional)
Create a service file
Start
Create validator
Delete node
Last updated