Upgrade
Prepare for and the upcomming chain upgrade using Cosmovisor.

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