Upgrade

Current Version
Upgrade Folder

v0.3.0

v0.3.0

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

Downloading and installing Binary

sudo systemctl stop titan

# Download pre-build Binaries
wget  https://files.nodeshub.online/testnet/titan/binary/genesis/titand
sudo chmod +x titand
mv titand $HOME/go/bin/

sudo systemctl restart titan

For Cosmovisor Users


# Download pre-build Binaries
wget  https://files.nodeshub.online/testnet/titan/binary/genesis/titand
sudo chmod +x titand
mv titand $HOME/go/bin/

# Making New Binary Directory and Copying the Daemon
mkdir -p $HOME/.titan/cosmovisor/upgrades/v0.3.0/bin
sudo cp $HOME/go/bin/titand $HOME/.titan/cosmovisor/upgrades/v0.3.0/bin/

#Stop titan daemon
sudo systemctl stop titan

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

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

Last updated