Downloading and installing Binary
sudo systemctl stop atomone
cd $HOME
git clone https://github.com/atomone-hub/atomone.git
cd atomone
git pull
git checkout v1.0.0
make install
sudo systemctl start atomone
# Downloading and installing Binary
cd $HOME
git clone https://github.com/atomone-hub/atomone.git
cd atomone
git pull
git checkout v1.0.0
make install
# Making New Binary Directory and Copying the Daemon
mkdir -p $HOME/.atomone/cosmovisor/upgrades/goku/bin
sudo cp $HOME/go/bin/atomoned $HOME/.atomone/cosmovisor/upgrades/goku/bin/
#Stop atomone daemon
sudo systemctl stop atomone
#creating symlink to new binaries
ls -l $HOME/.atomone/cosmovisor/current
rm $HOME/.atomone/cosmovisor/current
ln -s $HOME/.atomone/cosmovisor/upgrades/goku $HOME/.atomone/cosmovisor/current
#starting atomone
sudo systemctl start atomone && sudo journalctl -u atomone -f -o cat