🧪
Crypto Chemistry | Validator Services
  • ⛓️Supported Chain List
  • Mainnets
    • Kujira
      • Installation
      • Snapshot
      • Commands
      • Upgrades
        • v0.7.1
        • v0.8.3
        • v0.8.4
    • Jackal
      • Installation
      • Snapshot
      • Commands
      • Upgrades
        • v1.2.1
        • v2.0.0
    • Mars
      • Installation
      • Snapshot
      • Commands
    • Stride
      • Installation
      • Snapshot
      • Commands
      • Upgrades
        • v5
        • v6
        • v7
        • v8
  • Testnets
    • Clan
      • Installation
      • Commands
    • Loyal
      • Installation
      • Commands
    • Nibiru
      • Installation
      • Commands
    • Nolus
      • Installation
      • Snapshot
      • Commands
      • Upgrades
        • v0.1.43
        • v0.2.1
        • v0.2.2
    • Ollo
      • Installation
      • Commands
    • Quasar
      • Installation
      • Commands
Powered by GitBook
On this page
  • Cosmovisor Method
  • Build the new binary verison
  • Check the version
  • Make new Cosmovisor directory and copy binary
  • Verify the Cosmovisor upgrade version
  • Binary (Manual) Method
  • Build the new binary verison
  • Set Halt Height
  • Replace the binaries
  • Reset the Halt Height
  • Restart The Node
  1. Mainnets
  2. Jackal
  3. Upgrades

v2.0.0

Chain ID: jackal-1

The upgrade is scheduled for 2631260.

Cosmovisor Method

Build the new binary verison

cd canine-chain
git pull
git checkout v2.0.0
make install

Check the version

# The correct version should be 2.0.0
canined version
# Should be: 2c10d62602ff9c4aa68ec977e1f6870e2441df3b
canined version --long | grep commit

Make new Cosmovisor directory and copy binary

mkdir -p $HOME/.canine/cosmovisor/upgrades/recovery/bin
cp $HOME/go/bin/canined $HOME/.canine/cosmovisor/upgrades/recovery/bin

Verify the Cosmovisor upgrade version

# The correct version should be 2.0.0
$HOME/.canine/cosmovisor/upgrades/recovery/bin/canined version

Binary (Manual) Method

Build the new binary verison

cd canine-chain
git pull
git checkout v2.0.0
make build

Set Halt Height

sed -i.bak 's/halt-height = 0/halt-height = 2631260/' $HOME/.canine/config/app.toml

Then, wait until the upgrade time. At the upgrade time, move to the next section.

Replace the binaries

cp $HOME/canine-chain/build/canined $(which canined)

Reset the Halt Height

sed -i.bak 's/halt-height = 2631260/halt-height = 0/' $HOME/.canine/config/app.toml

Restart The Node

# Replace canined.service with whatever your service file is called
sudo systemctl restart canined.service
Previousv1.2.1NextMars

Last updated 2 years ago