Skip to main content

Andromeda Upgrade

Manual upgrade

Upgrade height: [4854150](https://cosmotracker.com/andromeda/block/4854150). Avoid upgrading before reaching this height.

```shell rm -rf $HOME/andromeda && \ git clone https://github.com/andromedaprotocol/andromedad andromeda && \ cd andromeda && git checkout v2.0.0 && \ make build || exit 1 && \ chmod +x build/andromedad && \ sudo mv build/andromedad $(which andromedad) && \ sudo service andromedad restart && \ sudo journalctl -fu andromedad -o cat ```

Cosmovisor upgrade

Choose this method only if you're using Cosmovisor to manage binaries and automate chain upgrades. ```shell rm -rf $HOME/andromeda && \ git clone https://github.com/andromedaprotocol/andromedad andromeda && \ cd andromeda && git checkout v2.0.0 && \ make build || exit 1 && \ chmod +x build/andromedad && \ mkdir -p $HOME/.andromeda/cosmovisor/upgrades/v2/bin && \ mv build/andromedad $HOME/.andromeda/cosmovisor/upgrades/v2/bin/ || exit 1 ```