Arkeo Upgrade
Upgrade to v1.0.14
Manual upgrade
Loading data...
cd $HOME && rm -rf arkeo && \
git clone https://github.com/arkeonetwork/arkeo.git arkeo && cd arkeo && \
git fetch --tags && \
git checkout v1.0.14 && \
make install && \
sudo mv $HOME/go/bin/arkeod $(which arkeod) && \
sudo service arkeo restart && \
sudo journalctl -fu arkeo -o cat
Cosmovisor upgrade
Note
Choose this method only if you're using Cosmovisor to manage binaries and automate chain upgrades.
cd $HOME && rm -rf arkeo && \
git clone https://github.com/arkeonetwork/arkeo.git arkeo && cd arkeo && \
git fetch --tags && \
git checkout v1.0.14 && \
make install && \
mkdir -p $HOME/.arkeo/cosmovisor/upgrades/providers-v1.0.14/bin && \
mv $HOME/go/bin/arkeod $HOME/.arkeo/cosmovisor/upgrades/providers-v1.0.14/bin/
Note: if you see this in your node’s logs:
UPGRADE "providers-v1.0.14" NEEDED at height: 1526000
then force Cosmovisor to point at the new upgrade directory:
cd "$HOME/.arkeo/cosmovisor" && ln -sfn "upgrades/providers-v1.0.14" current && ls -l current
This tells Cosmovisor to use the v1.0.14
binary as the “current” release so it won’t error on startup.