Upgrade
Prepare for and the upcomming chain upgrade using Cosmovisor.

Chain ID: native-t1 | Latest Version Tag: v1.0.0-beta.1
Download and build upgrade binaries
# Clone project repository
cd $HOME
rm -rf native
git clone https://github.com/gonative-cc/gonative native
cd native
git checkout v1.0.0-beta.1
# Build binaries
make build && make install
# Prepare binaries for Cosmovisor
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v1.0.0-beta.1/bin && cp $HOME/go/bin/gonative $DAEMON_HOME/cosmovisor/upgrades/v1.0.0-beta.1/bin
$DAEMON_HOME/cosmovisor/upgrades/v1.0.0-beta.1/bin/gonative version
rm -rf build
Thats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!
Last updated