Upgrade
Current Version
Upgrade Folder
v4.0.3
v4.0.3
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 v4.0.3
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 v4.0.3
make install
# Making New Binary Directory and Copying the Daemon
mkdir -p $HOME/.layer/cosmovisor/upgrades/v4.0.3/bin
sudo cp $HOME/go/bin/layerd $HOME/.layer/cosmovisor/upgrades/v4.0.3/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/v4.0.3 $HOME/.layer/cosmovisor/current
#starting tellor
sudo systemctl start tellor && sudo journalctl -u tellor -f -o cat
Last updated