Upgrade
Chain ID
Latest Version Tag
Custom Port
agoric-3
agoric-upgrade-15
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-15
git clone https://github.com/Agoric/agoric-sdk.git agoric-upgrade-15
cd agoric-upgrade-15
git checkout agoric-upgrade-15
# 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-15/bin
ln -s $HOME/agoric-upgrade-15/bin/agd $HOME/.agoric/cosmovisor/upgrades/agoric-upgrade-15/bin/agdThats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!
Last updated