quasar-icon

Node Snapshot Quasar

You can use the node snapshot below to get the block height according to the latest snapshot file we uploaded, we usually update the snapshot every 12/24 hours "UTC". With node snapshots, you can save storage space and time to sync your nodes.

Our Prune Configuration

                    
pruning = "custom"

# applied pruning strategy
pruning-keep-recent = "100"
pruning-interval = "10"

                    
                

Snapshot Info

location: Austria
file name:
block height:
snapshot size:
timestamp:
Download

Wasm file

Wasm file:
Size wasm:
Download wasm

Instructions with terminal

Note*

- If snapshot info doesn't show data, it means our server is down.
- Contact us if you need help / report.
- Ignore red text if you are not a validator.
- If you are a validator that uses a single node, make sure to back up priv_validator_key.json and priv_validator_state.json. Security reason
  • Install requirement if don't have:
    sudo apt install lz4 -y
  • Stop node :
    sudo systemctl stop quasarnoded
    Some also use this :
    systemctl --user stop quasarnoded
  • For Validator node

  • Back up priv_validator_key.json in safe place:
                                
    # default path
    # $HOME/.quasarnode/config/priv_validator_key.json
                            
  • Back up priv_validator_state.json:
    cp $HOME/.quasarnode/data/priv_validator_state.json $HOME/.quasarnode/priv_validator_state.json.bak
  • Reset chain data:
    quasarnoded tendermint unsafe-reset-all --home $HOME/.quasarnode --keep-addr-book
  • Delete wasm:
  • Usually the wasm path is located at `$HOME/.chain-dir`, but if it is not there, you can customize it.
    rm -r $HOME/.quasarnode/wasm
  • Download Snapshot Data ~ Including wasm files:
    curl -o - -L https://snapshot-at-1.genznodes.dev/quasar/Not-Available | lz4 -c -d - | tar -x -C $HOME/.quasarnode
  • Validator node move priv_validator_state.json that was backed up earlier:
    mv $HOME/.quasarnode/priv_validator_state.json.bak $HOME/.quasarnode/data/priv_validator_state.json
  • Restart node:
    sudo systemctl restart quasarnoded
    journalctl -fu quasarnoded -o cat
    Some also use this :
    systemctl --user restart quasarnoded
    journalctl --user -fu quasarnoded -o cat