Loading...

Hippo Chain Upgrade

The upgrade is scheduled for block 1,056,500. It is estimated to take place 11 hours 38 minutes from now.


Install New Binary

cd $HOME
cd hippo-protocol
git pull
git checkout v1.0.1
make install

Check Version

# should be v1.0.1
hippod version 

# Should be commit e2e864a879fe7d88e302763cdb9dbc9dcc3e6c9a
hippod version --long | grep commit 

Restart the service and check the logs

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

Make Cosmovisor Directory and Copy Binary

mkdir -p $HOME/.hippo/cosmovisor/upgrades/v1.0.1/bin
cp $HOME/go/bin/hippod $HOME/.hippo/cosmovisor/upgrades/v1.0.1/bin

Check Version Again

# should be v1.0.1
$HOME/.hippo/cosmovisor/upgrades/v1.0.1/bin/hippod version
When upgrade block height is reached, Cosmovisor will handle it automatically.