Chain ID Latest Version Tag Custom Port
agoric-3 agoric-upgrade-14-hotfix1 127

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 agoric-upgrade-14-hotfix1
git clone https://github.com/Agoric/agoric-sdk.git agoric-upgrade-14-hotfix1
cd agoric-upgrade-14-hotfix1
git checkout agoric-upgrade-14-hotfix1

# Install and build Agoric Javascript packages
yarn install && yarn build

# Install and build Agoric Cosmos SDK support
(cd packages/cosmic-swingset && make)

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.agoric/cosmovisor/upgrades/agoric-upgrade-14/bin
ln -s $HOME/agoric-upgrade-14-hotfix1/bin/agd $HOME/.agoric/cosmovisor/upgrades/agoric-upgrade-14/bin/agd

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