Upgrade
Automatic upgrade node
source <(curl -s https://raw.githubusercontent.com/chaindigital/celestia/main/upgradenodemain.sh)Manual upgrade node
sudo systemctl stop celestia-bridgecd $HOME
rm -rf celestia-node
git clone https://github.com/celestiaorg/celestia-node.git
cd celestia-node/
git checkout tags/v0.26.4
make build
sudo make install
make cel-key
celestia bridge config-update
sudo systemctl restart celestia-bridge && sudo journalctl -u celestia-bridge -fAutomatic upgrade app
source <(curl -s https://raw.githubusercontent.com/chaindigital/celestia/main/upgradeappmain.sh)Manual upgrade app
cd $HOME
rm -rf celestia-app
git clone https://github.com/celestiaorg/celestia-app.git
cd celestia-app/
APP_VERSION=v5.0.11
git checkout tags/$APP_VERSION -b $APP_VERSION
make install
sudo systemctl restart celestia-appd && sudo journalctl -u celestia-appd -fLast updated