Upgrade
Chain ID
Latest Version Tag
Custom Port
provider
v18.0.0-rc3
134
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 gaia
git clone https://github.com/cosmos/gaia.git
cd gaia
git checkout v18.0.0-rc3
# Build binaries
make build
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.gaia/cosmovisor/upgrades/v18/bin
mv build/gaiad $HOME/.gaia/cosmovisor/upgrades/v18/bin/
rm -rf buildThats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!