Upgrade
Using Cosmovisor streamlines upgrade preparation. Just build new binaries and move them to the Cosmovisor upgrades directory.
Download latest binaries
Download and build a specific upgrade binary file
cd $HOME
rm -rf quasar
git clone https://github.com/quasar-finance/quasar.git
cd quasar
git checkout v1.0.0-rc1-testnet
make build
Latest commit : 62be16315e5cf279669378e3e124ef38c23525c9
Prepare Cosmovisor
Get the binaries ready for Cosmovisor upgrades
mkdir -p $HOME/.quasarnode/cosmovisor/upgrades/v1/bin
mv build/quasarnoded $HOME/.quasarnode/cosmovisor/upgrades/v1/bin/
rm -rf build
β³
That's all! Cosmovisor will take care of the upgrade automatically once the specified block height is reached.