CHAIN DIGITAL | services for nodes
  • About CHAIN DIGITAL
  • Testnets
    • Celestia
      • Install
        • Full node
        • Bridge node
      • Upgrade
      • API/Snapshot/AddrBook
      • Useful Commands
      • Monitoring a Celestia consensus node
      • Celestia Validator monitoring guide with tenderduty
    • Walrus
      • Guide for Node Operators
  • MAINNETS
    • Celestia
      • Install
        • Full node
        • Bridge node
      • Upgrade
      • Useful Commands
    • Kusama
      • Install
      • Upgrade
      • RPC and Snapshot
      • Useful Commands
    • Polkadot
      • Install
      • Upgrade
      • RPC and Snapshot
      • Useful Commands
    • Sui
      • Sui Full Node
      • Sui Validator Node
  • VALIDATOR SECURITY
    • Server Security for Validators
Powered by GitBook
On this page
  • Automatic upgrade node
  • Manual upgrade node
  • Automatic upgrade app
  • Manual upgrade app
  1. Testnets
  2. Celestia

Upgrade

Automatic upgrade node

source <(curl -s https://raw.githubusercontent.com/chaindigital/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.23.1-mocha
make build 
sudo make install 
make cel-key 
celestia bridge config-update --p2p.network mocha

sudo systemctl restart celestia-bridge && sudo journalctl -u celestia-bridge -f -o cat

Automatic upgrade app

source <(curl -s https://raw.githubusercontent.com/chaindigital/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=v4.0.2-mocha
git checkout tags/$APP_VERSION -b $APP_VERSION 
make install
sudo systemctl restart celestia-appd && sudo journalctl -u celestia-appd -f
PreviousBridge nodeNextAPI/Snapshot/AddrBook

Last updated 11 days ago