Comment on page
Upgrade
Prepare for and the upcomming chain upgrade using Cosmovisor.
Network: Mainnet | Chain ID: bitcanna-1 | Version: v2.0.3
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.
Executable | Node Version |
---|---|
bcnad | v2.0.2 > v2.0.3 |
if you get an error looking at logs updating on nodes try updating available new version.
sudo systemctl stop bcnad
cd $HOME
rm -rf bcna
git clone https://github.com/BitCannaGlobal/bcna.git
cd bcna
git checkout v2.0.3
make build
mkdir -p $HOME/.bcna/cosmovisor/upgrades/wakeandbake/bin
mv build/bcnad $HOME/.bcna/cosmovisor/upgrades/wakeandbake/bin/
rm -rf build
sudo systemctl start bcnad && sudo journalctl -fu bcnad -o cat
Last modified 1mo ago