Downloading and installing Binary
sudo systemctl stop tellor
cd $HOME
git clone https://github.com/layer-io/layer
cd layer
git pull
git checkout v3.0.2
make install
sudo systemctl start tellor
# Downloading and installing Binary
cd $HOME
git clone https://github.com/layer-io/layer
cd layer
git pull
git checkout v3.0.2
make install
# Making New Binary Directory and Copying the Daemon
mkdir -p $HOME/.layer/cosmovisor/upgrades/v3.0.2/bin
sudo cp $HOME/go/bin/layerd $HOME/.layer/cosmovisor/upgrades/v3.0.2/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/v3.0.2 $HOME/.layer/cosmovisor/current
#starting tellor
sudo systemctl start tellor && sudo journalctl -u tellor -f -o cat