Uptick Upgrade
Upgrade to v0.3.1
Manual upgrade
Loading data...
cd $HOME && rm -rf uptick && \
git clone https://github.com/UptickNetwork/uptick.git uptick && cd uptick && \
git fetch --tags && \
git checkout v0.3.1 && \
make build && \
sudo mv build/uptickd $(which uptickd) && \
sudo service uptick restart && \
sudo journalctl -fu uptick -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 uptick && \
git clone https://github.com/UptickNetwork/uptick.git uptick && cd uptick && \
git fetch --tags && \
git checkout v0.3.1 && \
make build && \
mkdir -p $HOME/.uptickd/cosmovisor/upgrades/v0.3.1/bin && \
mv build/uptickd $HOME/.uptickd/cosmovisor/upgrades/v0.3.1/bin/
UPGRADE "v0.3.1" NEEDED at height: 16722530then force Cosmovisor to point at the new upgrade directory:cd "$HOME/.uptickd/cosmovisor" && ln -sfn "upgrades/v0.3.1" current && ls -l current
v0.3.1 binary as the “current” release so it won’t error on startup.