Chain ID Latest Version Tag Custom Port
dymension_1100-1 v3.1.0 146

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.

Download and build upgrade binaries

# Clone project repository
cd $HOME
rm -rf dymension
git clone https://github.com/dymensionxyz/dymension.git
cd dymension
git checkout v3.1.0

# Build binaries
make build

# Prepare binaries for Cosmovisor
mkdir -p $HOME/.dymension/cosmovisor/upgrades/v3/bin
mv build/dymd $HOME/.dymension/cosmovisor/upgrades/v3/bin/
rm -rf build

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