Chain ID | Latest Version Tag | Custom Port |
---|---|---|
xion-mainnet-1 | v14.0.0 | 183 |
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 xion
git clone https://github.com/burnt-labs/xion.git
cd xion
git checkout v14.0.0
# Build binaries
make build
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.xiond/cosmovisor/upgrades/v14/bin
mv build/xiond $HOME/.xiond/cosmovisor/upgrades/v14/bin/
rm -rf build
Thats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!