ZIGChain Snapshots

Bootstrap Snapshots

NetworkBlock HeightTypeMirrorDateDatabaseSizeChecksumDownload
Loading…

Archived Snapshots

NetworkBlock HeightTypeMirrorDateDatabaseSizeChecksumDownload
Loading…

Binaries

Version:
SHA256Download
Loading…

Snapshot Guide

1. Install lz4

sudo apt update 
sudo apt install lz4

2. Stop the node

sudo systemctl stop zigchaind

3. Back up validator state

cp ~/.zigchain/data/priv_validator_state.json ~/priv_validator_state.json.bak

4. Reset the node

zigchaind tendermint unsafe-reset-all --home ~/.zigchain --keep-addr-book

5. Download and decompress the snapshot

wget -O - <SNAPSHOT_URL> | lz4 -d | tar -xf - -C ~/.zigchain
Note: Commands assume default home directory ~/.zigchaind. Adjust if using a custom --home path.

6. Restore validator state

cp ~/priv_validator_state.json.bak ~/.zigchain/data/priv_validator_state.json

7. Restart the node

sudo systemctl start zigchaind

Resources