Celestia Mainnet Upgrade

Celestia Mainnet update on block 5268027

Current Block: Loading...

Validator Node (17.04.25)

cd $HOME/celestia-app
git fetch --all
git checkout v3.8.1
make install
celestia-appd version --long | grep -e commit -e version
#version: 3.8.1
#commit: 
sudo systemctl restart celestia-appd && sudo journalctl -fu celestia-appd -o cat

Bridge Node (05.05.25)

cd $HOME/celestia-node
git pull
git checkout tags/v0.22.2
make build
make install
make cel-key
celestia version
#Semantic version: v0.22.2
#Commit: 
sudo systemctl stop celestia-bridge
celestia bridge config-update
sudo systemctl restart celestia-bridge && sudo journalctl -fu celestia-bridge -ocat

Full Node (05.05.25)

cd $HOME/celestia-node
git pull
git checkout tags/v0.22.2
make build
make install
make cel-key
celestia version
#Semantic version: v0.22.2
#Commit: 
sudo systemctl stop celestia-full
celestia full config-update
sudo systemctl restart celestia-full && sudo journalctl -fu celestia-full -ocat

Light Node (05.05.25)

cd $HOME/celestia-node
git pull
git checkout tags/v0.22.2
make build
make install
make cel-key
celestia version
#Semantic version: v0.22.2
#Commit: 
sudo systemctl stop celestia-light
celestia light config-update
sudo systemctl restart celestia-light && sudo journalctl -fu celestia-light -ocat