v8
Chain ID: stride-1
The upgrade is scheduled for 3009003.
Cosmovisor Method
Build the new binary verison
cd stride
git pull
git checkout v8.0.0
make installCheck the version
# The correct version should be 8.0.0
strided version
# Should be: 3c69e7644859981b1fd9313eb1f0c5e5886e4a0d
strided version --long | grep commitMake new Cosmovisor directory and copy binary
mkdir -p $HOME/.stride/cosmovisor/upgrades/v8/bin
cp $HOME/go/bin/strided $HOME/.stride/cosmovisor/upgrades/v8/binVerify the Cosmovisor upgrade version
# The correct version should be 8.0.0
$HOME/.stride/cosmovisor/upgrades/v8/bin/strided versionBinary (Manual) Method
Build the new binary verison
cd stride
git pull
git checkout v8.0.0
make buildSet Halt Height
sed -i.bak 's/halt-height = 0/halt-height = 3009003/' $HOME/.stride/config/app.tomlThen, wait until the upgrade time. At the upgrade time, move to the next section.
Replace the binaries
cp $HOME/stride/build/strided $(which strided)Reset the Halt Height
sed -i.bak 's/halt-height = 3009003/halt-height = 0/' $HOME/.stride/config/app.tomlRestart The Node
# Replace strided.service with whatever your service file is called
sudo systemctl restart strided.serviceLast updated