Bootstrap Snapshots
| Network | Block Height | Type | Mirror | Date | Database | Size | Checksum | Download | |
|---|---|---|---|---|---|---|---|---|---|
| Loading… | |||||||||
Archived Snapshots
| Network | Block Height | Type | Mirror | Date | Database | Size | Checksum | Download | |
|---|---|---|---|---|---|---|---|---|---|
| Loading… | |||||||||
Binaries
Version: —| SHA256 | Download | ||
|---|---|---|---|
| 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
6. Restore validator state
cp ~/priv_validator_state.json.bak ~/.zigchain/data/priv_validator_state.json
7. Restart the node
sudo systemctl start zigchaind