Upgrade

Automatic upgrade node

source <(curl -s https://raw.githubusercontent.com/ERNcrypto/celestia/main/upgradenode.sh)

Manual upgrade node

sudo systemctl stop celestia-bridge
rm -rf celestia-node
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.16.0
make build 
sudo make install 
make cel-key 
celestia bridge config-update --p2p.network mocha
systemctl daemon-reload
systemctl restart celestia-bridge && journalctl -u celestia-bridge -f -o cat

Automatic upgrade app

source <(curl -s https://raw.githubusercontent.com/ERNcrypto/celestia/main/upgradeapp.sh)

Manual upgrade app

cd $HOME 
rm -rf celestia-app 
git clone https://github.com/celestiaorg/celestia-app.git 
cd celestia-app/ 
APP_VERSION=v2.1.2
git checkout tags/$APP_VERSION -b $APP_VERSION 
make install

sudo systemctl restart celestia-appd && sudo journalctl -u celestia-appd -f

Last updated