Loading...

Archway Chain Upgrade

The upgrade is scheduled for block 8,919,000. It is estimated to take place 9 days 12 hours 44 minutes from now.


Install New Binary

cd $HOME
cd archway
git pull
git checkout v10.0.0
make install

Check Version

# should be v10.0.0
archwayd version

# Should be commit 1de4e5c39a07893c8ce2949978e9c0714e5d6097
archwayd version --long | grep commit

Restart the service and check the logs

Without using Cosmovisor
sudo systemctl restart archwayd
sudo journalctl -u archwayd -f

Make Cosmovisor Directory and Copy Binary

mkdir -p $HOME/.archway/cosmovisor/upgrades/v10.0.0/bin
cp $HOME/go/bin/archwayd $HOME/.archway/cosmovisor/upgrades/v10.0.0/bin

Check Version Again

# should be v10.0.0
$HOME/.archway/cosmovisor/upgrades/v10.0.0/bin/archwayd version
When upgrade block height is reached, Cosmovisor will handle it automatically.