🦥
Services
  • 🖤README
  • MAINNET
    • AGORIC
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • CELESTIA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • COSMOS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • DYMENSION
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • ELYS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • FXCORE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • JACKAL
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • JUNO
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • MANTRA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • NEUTRON
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • NOIS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • OSMOSIS
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • PASSAGE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • PERSISTENCE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • PICASSO
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • QUASAR
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • SAGA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • STARGAZE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • STRIDE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
  • TESTNET
    • BABYLON
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • CELESTIA
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • NATIVE
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • OKP4
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • QUASAR
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
    • STORY
      • Installation
      • Upgrade
      • Snapshot
      • State sync
      • Useful commands
Powered by GitBook
On this page
  • Snapshot
  • Instructions
  • Add seeds
  1. MAINNET
  2. QUASAR

Snapshot

Catch the latest block faster by using our daily snapshots.

PreviousUpgradeNextState sync

Last updated 6 months ago

Snapshot

Chain ID: quasar-1 | Latest Version Tag: 3.0.0

Snapshots allows a new node to join the network by recovering application state from a backup file. Snapshot contains compressed copy of chain data directory. To keep backup files as small as plausible, snapshot server is periodically beeing state-synced.

Snapshots are taken automatically every 24 hours

https://snapshots.stakeandrelax.net/snapshots/quasar/snapshot/snapshot_latest.tar.lz4

Instructions

Stop the service and reset the data

sudo systemctl stop quasar
cp $HOME/.quasarnode/data/priv_validator_state.json $HOME/.quasarnode/priv_validator_state.json.backup
rm -rf $HOME/.quasarnode/data

Download latest snapshot

curl -L https://snapshots.stakeandrelax.net/snapshots/quasar/snapshot_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.quasarnode
mv $HOME/.quasarnode/priv_validator_state.json.backup $HOME/.quasarnode/data/priv_validator_state.json

Add seeds

sed -i -e "s|^seeds *=.*|seeds = \"[email protected]:18256\"|" $HOME/.quasarnode/config/config.toml

Restart the service and check the log

sudo systemctl start quasar && sudo journalctl -u quasar -f --no-hostname -o cat