Upgrade
Prepare for and the upcomming chain upgrade using Cosmovisor.

Chain ID: bitcanna-dev-1 | Latest Version Tag: v1.6.3-rc1 | Custom Port: 42
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.
# Clone project repository
cd $HOME
rm -rf bcna
git clone https://github.com/BitCannaGlobal/bcna.git
cd bcna
git checkout v1.6.3-rc1
# Build binaries
make build
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.bcna/cosmovisor/upgrades/vigorous-grow-fix/bin
mv build/bcnad $HOME/.bcna/cosmovisor/upgrades/vigorous-grow-fix/bin/
rm -rf build
Thats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!
Last modified 7d ago