Upgrade
Prepare for and the upcomming chain upgrade using Cosmovisor.

Chain ID: celestia | Latest Version Tag: 2.3.1
Download and build upgrade binaries
# Clone project repository
cd $HOME
rm -rf celestia
git clone https://github.com/celestiaorg/celestia-app.git celestia
cd celestia
git checkout 2.3.1
# Build binaries
make build && make install
# Prepare binaries for Cosmovisor
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/2.3.1/bin && cp $HOME/go/bin/celestia-appd $DAEMON_HOME/cosmovisor/upgrades/2.3.1/bin
$DAEMON_HOME/cosmovisor/upgrades/2.3.1/bin/celestia-appd version
rm -rf build
Thats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!
Last updated