# Upgrade

<figure><img src="https://raw.githubusercontent.com/StakeandRelax-Validator/documentation/main/Logos/mantra.png" alt="" width="150"><figcaption></figcaption></figure>

**Chain ID**: mantra-1 | **Latest Version Tag**: v6.1.0

{% hint style="info" %}
Since we are using Cosmovisor, it makes it very easy to prepare for upcomming upgrade. You just have to build new binaries and move it into cosmovisor upgrades directory.
{% endhint %}

## Download and build upgrade binaries

```bash
# Clone project repository
cd $HOME
rm -rf mantra
git clone https://github.com/MANTRA-Chain/mantrachain/ mantra
cd mantra
git checkout v6.1.0

# Build binaries
make build && make install

# Prepare binaries for Cosmovisor
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v6.1.0/bin && cp $HOME/go/bin/mantrachaind $DAEMON_HOME/cosmovisor/upgrades/v6.1.0/bin
$DAEMON_HOME/cosmovisor/upgrades/v6.1.0/bin/mantrachaind version
rm -rf build
```

*Thats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!*
