Upgrade
Chain ID
Latest Version Tag
Custom Port
andromeda-1
v0.1.1-beta-patch
147
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 andromedad
git clone https://github.com/andromedaprotocol/andromedad.git
cd andromedad
git checkout v0.1.1-beta-patch
# Build binaries
make build
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.andromeda/cosmovisor/upgrades/v0.1.1/bin
mv bin/andromedad $HOME/.andromeda/cosmovisor/upgrades/v0.1.1/bin/
rm -rf buildThats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!
Last updated