Celestia is a modular data availability network that securely scales with the number of users, making it easy for anyone to launch their own blockchain.
Archive snapshots are taken automatically everyday at 00:00 UTC
Pruning:nothing, Indexer:kv
Block | Snapshot time | Size | Download | Checksum |
---|---|---|---|---|
No data |
Guide
Preparation install the dependencies
sudo apt update
sudo apt install snapd -y
sudo snap install lz4
Stop service and clean the data
sudo systemctl stop celestia.service
cp $HOME/.celestia-app/data/priv_validator_state.json $HOME/.celestia-app/priv_validator_state.json.backup
rm -rf $HOME/.celestia-app/data
or
celestia-appd tendermint unsafe-reset-all --home $HOME/.celestia-app --keep-addr-book
Download snapshot file
wget -O lasted_snapshot.tar.lz4 undefined
sha256sum lasted_snapshot.tar.lz4 \\The result from checksum should be: undefined
lz4 -c -d lasted_snapshot.tar.lz4 | tar -x -C $HOME/.celestia-app
Recovery private validator state (If you run a validator)
cp $HOME/.celestia-app/priv_validator_state.json.backup $HOME/.celestia-app/data/priv_validator_state.json
Remove snapshot file
rm -v lasted_snapshot.tar.lz4
Start node and verify log
sudo systemctl restart celestia.service && sudo journalctl -u celestia.service -f --no-hostname