Chain ID Latest Version Tag Custom Port
agoric-emerynet-8 agoric-upgrade-16-rc3 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-16-rc3
git clone https://github.com/Agoric/agoric-sdk.git agoric-upgrade-16-rc3
cd agoric-upgrade-16-rc3
git checkout agoric-upgrade-16-rc3

# 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-16-2/bin
ln -s $HOME/agoric-upgrade-16-rc3/bin/agd $HOME/.agoric/cosmovisor/upgrades/agoric-upgrade-16-2/bin/agd

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