Upgrade
Prepare for and the upcomming chain upgrade using Cosmovisor.

Chain ID: fxcore | Latest Version Tag: v7.5.0
Download and build upgrade binaries
# Clone project repository
cd $HOME
rm -rf fxcore
git clone https://github.com/functionx/fx-core fxcore
cd fxcore
git checkout v7.5.0
# Build binaries
make build && make install
# Prepare binaries for Cosmovisor
mkdir -p $DAEMON_HOME/cosmovisor/upgrades/v7.5.0/bin && cp $HOME/go/bin/fxcored $DAEMON_HOME/cosmovisor/upgrades/v7.5.0/bin
$DAEMON_HOME/cosmovisor/upgrades/v7.5.0/bin/fxcored version
rm -rf build
Thats it! Now when upgrade block height is reached, Cosmovisor will handle it automatically!
Last updated