Skip to main content

Snapshot

When a new node joins a network, it can use a snapshot — a compressed backup of the chain's data — to quickly synchronize with the current state. Snapshots expedite the process, reducing the need to download and verify every transaction from the beginning.

info

Choose a snapshot from the list and run the commands below. Don't forget to change snapshot_url.

sudo systemctl stop haqqd

# make a backup
cp $HOME/.haqqd/data/priv_validator_state.json $HOME/.haqqd/priv_validator_state.json.backup

# reset your node and download a snapshot
haqqd tendermint unsafe-reset-all --home $HOME/.haqqd --keep-addr-book
wget <snapshot_url> | lz4 -dc - | tar -xf - -C $HOME/.haqqd

# replace the priv_validator_state.json you have backed up
mv $HOME/.haqqd/priv_validator_state.json.backup $HOME/.haqqd/data/priv_validator_state.json

sudo systemctl restart haqqd && sudo journalctl -u haqqd -f -o cat

A list of Snapshots you can use:

Lavender.Five:

https://snapshots.lavenderfive.com/snapshots/haqq/latest.tar.lz4