Upgrade

Current Version
Upgrade Folder

v29.0.0

v29

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

Downloading and installing Binary

sudo systemctl stop juno
cd $HOME
git clone https://github.com/CosmosContracts/juno 
cd juno
git pull
git checkout v29.0.0
make install

sudo systemctl start juno

For Cosmovisor Users

# Downloading and installing Binary
cd $HOME
git clone https://github.com/CosmosContracts/juno 
cd juno
git pull
git checkout v29.0.0
make install

# Making New Binary Directory and Copying the Daemon
mkdir -p $HOME/.juno/cosmovisor/upgrades/v29/bin
sudo cp $HOME/go/bin/junod $HOME/.juno/cosmovisor/upgrades/v29/bin/

#Stop juno daemon
sudo systemctl stop juno

#creating symlink to new binaries
ls -l $HOME/.juno/cosmovisor/current
rm $HOME/.juno/cosmovisor/current
ln -s $HOME/.juno/cosmovisor/upgrades/v29 $HOME/.juno/cosmovisor/current

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

Last updated