sudo systemctl stop selfchain
# Download Pre-Built Binary
wget -O $HOME/go/bin/selfchaind https://files.nodeshub.online/testnet/selfchain/binary/current/selfchaind
sudo systemctl start selfchain
# Downloading and installing Binary
# Download Pre-Built Binary
wget -O $HOME/go/bin/selfchaind https://files.nodeshub.online/testnet/selfchain/binary/current/selfchaind
# Making New Binary Directory and Copying the Daemon
mkdir -p $HOME/.selfchain/cosmovisor/upgrades/v1.0.2/bin
sudo cp $HOME/go/bin/selfchaind $HOME/.selfchain/cosmovisor/upgrades/v1.0.2/bin/
#Stop selfchain daemon
sudo systemctl stop selfchain
#creating symlink to new binaries
ls -l $HOME/.selfchain/cosmovisor/current
rm $HOME/.selfchain/cosmovisor/current
ln -s $HOME/.selfchain/cosmovisor/upgrades/v1.0.2 $HOME/.selfchain/cosmovisor/current
#starting selfchain
sudo systemctl start selfchain && sudo journalctl -u selfchain -f -o cat