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
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 c4ed
systemctl --user stop c4ed
For Validator node
# default path
# $HOME/.c4e-chain/config/priv_validator_key.json
cp $HOME/.c4e-chain/data/priv_validator_state.json $HOME/.c4e-chain/priv_validator_state.json.bak
c4ed tendermint unsafe-reset-all --home $HOME/.c4e-chain --keep-addr-book
curl -o - -L https://snapshot-at-1.genznodes.dev/c4e/c4e-8995816.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.c4e-chain
mv $HOME/.c4e-chain/priv_validator_state.json.bak $HOME/.c4e-chain/data/priv_validator_state.json
sudo systemctl restart c4ed
journalctl -fu c4ed -o cat
systemctl --user restart c4ed
journalctl --user -fu c4ed -o cat