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
Wasm file
Instructions with terminal
Note*
- If snapshot info doesn't show data, it means our server is down.sudo apt install lz4 -y
sudo systemctl stop routerd
systemctl --user stop routerd
For Validator node
# default path
# $HOME/.routerd/config/priv_validator_key.json
cp $HOME/.routerd/data/priv_validator_state.json $HOME/.routerd/priv_validator_state.json.bak
routerd tendermint unsafe-reset-all --home $HOME/.routerd --keep-addr-book
rm -r $HOME/.routerd/wasm
curl -o - -L https://snapshot-at-1.genznodes.dev/router/router-7536895.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.routerd
mv $HOME/.routerd/priv_validator_state.json.bak $HOME/.routerd/data/priv_validator_state.json
sudo systemctl restart routerd
journalctl -fu routerd -o cat
systemctl --user restart routerd
journalctl --user -fu routerd -o cat