Upgrade

Current Version
Upgrade Folder

v0.5.2

v0.5.2

This guide assumes that the current systemd file is named as warden

Downloading and installing Binary

sudo systemctl stop warden
cd $HOME
wget https://github.com/warden-protocol/wardenprotocol/releases/download/v0.5.2/wardend_Linux_x86_64.zip
unzip wardend_Linux_x86_64.zip
chmod +x wardend
mv wardend $HOME/go/bin

sudo systemctl start warden

For Cosmovisor Users

# Downloading and installing Binary
cd $HOME
wget https://github.com/warden-protocol/wardenprotocol/releases/download/v0.5.2/wardend_Linux_x86_64.zip
unzip wardend_Linux_x86_64.zip
chmod +x wardend
mv wardend $HOME/go/bin

# Making New Binary Directory and Copying the Daemon
mkdir -p $HOME/.warden/cosmovisor/upgrades/v0.5.2/bin
sudo cp $HOME/go/bin/wardend $HOME/.warden/cosmovisor/upgrades/v0.5.2/bin/

#Stop warden daemon
sudo systemctl stop warden

#creating symlink to new binaries
ls -l $HOME/.warden/cosmovisor/current
rm $HOME/.warden/cosmovisor/current
ln -s $HOME/.warden/cosmovisor/upgrades/v0.5.2 $HOME/.warden/cosmovisor/current

#starting warden
sudo systemctl start warden && sudo journalctl -u warden -f -o cat

Last updated