Upgrade

Current Version
Upgrade Folder

v5.1.0

v5.1.0

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

Downloading and installing Binary

sudo systemctl stop tellor
cd $HOME
git clone https://github.com/tellor-io/layer/ 
cd layer
git pull
git checkout v5.1.0
make install

sudo systemctl start tellor

For Cosmovisor Users

# Downloading and installing Binary
cd $HOME
git clone https://github.com/tellor-io/layer/ 
cd layer
git pull
git checkout v5.1.0
make install

# Making New Binary Directory and Copying the Daemon
mkdir -p $HOME/.layer/cosmovisor/upgrades/v5.1.0/bin
sudo cp $HOME/go/bin/layerd $HOME/.layer/cosmovisor/upgrades/v5.1.0/bin/

#Stop tellor daemon
sudo systemctl stop tellor

#creating symlink to new binaries
ls -l $HOME/.layer/cosmovisor/current
rm $HOME/.layer/cosmovisor/current
ln -s $HOME/.layer/cosmovisor/upgrades/v5.1.0 $HOME/.layer/cosmovisor/current

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

Last updated