Indonode
Explorer
  • Home
  • Mainnet
    • Planq
      • Node Installation
      • Snapshot
      • Upgrade
      • CLI Cheatsheet
    • Chain4Energy
      • Node Installation
      • Upgrade
      • CLI Cheatsheet
    • Bitcanna
      • Node Installation
      • Snapshot
      • Statesync
      • Upgrade
      • CLI Cheatsheet
    • Band
      • Node Installation
      • Yoda Configuration
      • Snapshot
      • Upgrade
      • CLI Cheatsheet
    • Source
      • Node Installation
      • Snapshot
      • Statesync
      • Upgrade
      • CLI Cheatsheet
    • SGE
      • Node Installation
      • Snapshot
      • Statesync
      • Upgrade
      • CLI Cheatsheet
  • Testnet
    • Chain4Energy
      • Node Installation
      • Upgrade
      • CLI Cheatsheet
    • Selfchain
      • Node Installation
      • Upgrade
      • CLI Cheatsheet
    • Entangle
      • Node Installation
      • Snapshot
      • Upgrade
      • CLI Cheatsheet
    • Mantra
      • Node Installation
      • Snapshot
      • Upgrade
      • CLI Cheatsheet
    • Entrypoint
      • Node Installation
      • Snapshot
      • Statesync
      • Upgrade
      • CLI Cheatsheet
    • Nulink
      • Worker Installation
      • Bond Worker
      • Update Worker
    • Namada
      • Node Installation
      • Useful Commands
  • Other
Powered by GitBook
On this page
PreviousSnapshotNextCLI Cheatsheet

Last updated 1 year ago


Latest Version
Chain-id
Wasm

1.0.8

planq_7070-2

DISABLED

Upgrade Guide

# Download and build binary
cd $HOME
rm -rf planq/
git clone https://github.com/planq-network/planq.git
cd planq/
git fetch --all
git checkout v1.0.7
make build


# Prepare binaries for Cosmovisor
mv build/planqd $(which planqd)


# Restart your node
sudo systemctl restart planqd && journalctl -fu planqd -o cat
# Stop binary
sudo systemctl stop planqd

# Download and install binary
cd $HOME
rm -rf planq/
git clone https://github.com/planq-network/planq.git
cd planq/
git fetch --all
git checkout v1.0.7
make install


# Restart your node
sudo systemctl restart planqd && journalctl -fu planqd -o cat