Celestia Mainnet Upgrade

Celestia Mainnet update on block 2838142

Current Block: Loading...

Validator Node (31.10.24)

cd $HOME/celestia-app
git fetch --all
git checkout v2.3.1
make install
celestia-appd version --long | grep -e commit -e version
#version: 2.3.1
#commit: 06f24f5d
sudo systemctl restart celestia-appd && sudo journalctl -fu celestia-appd -o cat

Bridge Node (21.11.24)

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

Full Node (31.10.24)

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

Light Node (31.10.24)

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