Upgrade

Prepare for and the upcomming chain upgrade using Cosmovisor.

Chain ID: cosmoshub-4 | Latest Version Tag: v13.0.0 | Custom Port: 149

Since we are using Cosmovisor, it makes it very easy to prepare for upcomming upgrade. You just have to build new binaries and move it into cosmovisor upgrades directory.

Download and build upgrade binaries

# Clone project repository
cd $HOME
rm -rf cosmos
git clone https://github.com/cosmos/gaia
cd cosmos
git checkout v13.0.0

# Build binaries
make build

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.gaia/cosmovisor/upgrades/v13/bin
mv build/cosmosd $HOME/.gaia/cosmovisor/upgrades/v13/bin/
rm -rf build

Thats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!

Last updated