Loading...

Snapshot

Network shentu-2.2
Block 20,320,399
Pruning custom 100/0/10
Indexer null
Frequency every 5 hours
Timestamp 16/09/2024 14:51 UTC
Age 4 hours ago
Download shentu_latest.tar.lz4 (4.3G)

The snapshot is designed for node opeartors to run an efficient node on Shentu chain. To make the snapshot as small as possible while still viable as a validator, we use the following setting to save on the disk space. It might be helpful for you to sync with our snapshot periodically because Tendermint chain storage grows over time regardless of the pruning. Since we periodically state-sync our snapshot nodes, you might notice that sometimes the size of our snapshot is surprisingly small.
app.toml
# Prune Type
pruning = "custom"

# Prune Strategy
pruning-keep-recent = "100"
pruning-keep-every = "0"
pruning-interval = "10"
config.toml
indexer = "null"

Install lz4 if needed

sudo apt update
sudo apt install lz4

Stop the service and reset the data

Reset your node. This will erase your node database. If you are already running validator, be sure you backed up your `priv_validator_key.json` prior to running the the command. The command does not wipe the file. However, you should have a backup of it already in a safe location.

WARNING: If you use this snapshot on a validator node during a chain halt, make sure you back up priv_validator_state.json and then replace it after the snapshot is extracted but before you start the node process. This is very important in order to avoid double-sign.
# Stop your node 
sudo systemctl stop shentud

# Back up priv_validator_state.json if needed
cp $HOME/.shentud/data/priv_validator_state.json $HOME/.shentud/data/priv_validator_state.json.backup

# Reset tendermint chain
shentud tendermint unsafe-reset-all --home $HOME/.shentud --keep-addr-book

Download latest snapshot

#  Download the snapshot 
wget -O shentu_latest.tar.lz4 https://snapshots.tienthuattoan.com/mainnet/shentu/shentu_latest.tar.lz4

# Decompress the snapshot 
lz4 -c -d shentu_latest.tar.lz4 | tar -x -C $HOME/.shentud

# Replace with the backed-up priv_validator_state.json
mv $HOME/.shentud/priv_validator_state.json.backup $HOME/.shentud/data/priv_validator_state.json

Restart the service and check the log

sudo systemctl restart shentud
sudo journalctl -u shentud -f

Remove downloaded snapshot to free up space

rm shentu_latest.tar.lz4