Upgrade
Upgrade to
Manual upgrade
Loading data...
rm -rf $HOME/bin && mkdir $HOME/bin && cd $HOME/bin && \
wget https://github.com/empe-io/empe-chain-releases/raw/master//emped__linux_amd64.tar.gz && \
tar -xvf emped__linux_amd64.tar.gz && \
chmod +x && \
sudo mv $(which ) && \
sudo service restart && \
sudo journalctl -fu -o cat
Cosmovisor upgrade
Note
Choose this method only if you're using Cosmovisor to manage binaries and automate chain upgrades.
rm -rf $HOME/bin && mkdir $HOME/bin && cd $HOME/bin && \
wget https://github.com/empe-io/empe-chain-releases/raw/master//emped__linux_amd64.tar.gz && \
tar -xvf emped__linux_amd64.tar.gz && \
chmod +x && \
mkdir -p $HOME//cosmovisor/upgrades//bin && \
mv $HOME//cosmovisor/upgrades//bin/
Note: if you see this in your node’s logs:
UPGRADE "" NEEDED at height:
then force Cosmovisor to point at the new upgrade directory:
cd "$HOME//cosmovisor" && ln -sfn "upgrades/" current && ls -l current
This tells Cosmovisor to use the binary as the “current” release so it won’t error on startup.