BEFORE THE UPGRADE

BLOCK

Preparing for the Upgrade

Create Upgrade Directories and Download the Binary

bash
cd $HOME
mkdir -p $HOME/.warden/cosmovisor/upgrades/v062-to-v063/bin
wget https://github.com/warden-protocol/wardenprotocol/releases/download/v0.6.3/wardend-0.6.3-linux-amd64 -O $HOME/.warden/cosmovisor/upgrades/v062-to-v063/bin/wardend
chmod +x $HOME/.warden/cosmovisor/upgrades/v062-to-v063/bin/wardend

Check Version

bash
$HOME/.warden/cosmovisor/upgrades/v062-to-v063/bin/wardend version
If the version shows as 0.6.3, the preparation is complete.

AFTER THE UPGRADE

BLOCK

Stop the Service and Download the Binary

bash
cd $HOME
sudo systemctl stop wardend
mkdir -p $HOME/.warden/cosmovisor/upgrades/v062-to-v063/bin
wget https://github.com/warden-protocol/wardenprotocol/releases/download/v0.6.3/wardend-0.6.3-linux-amd64 -O $HOME/.warden/cosmovisor/upgrades/v062-to-v063/bin/wardend
chmod +x $HOME/.warden/cosmovisor/upgrades/v062-to-v063/bin/wardend

Activate the New Version

bash
sudo ln -sfn $HOME/.warden/cosmovisor/upgrades/v062-to-v063 $HOME/.warden/cosmovisor/current
sudo ln -sfn $HOME/.warden/cosmovisor/current/bin/wardend /usr/local/bin/wardend

Restart and Monitor the Service

bash
sudo systemctl restart wardend
sudo journalctl -fu wardend -o cat