Consensus RPC
https://rpc.celestia-mainnet.blackblocks.io/
DA Bridge RPC
https://bridge.celestia-mainnet.blackblocks.io/
Everyday 00:00 UTC
Indexer=kv
Pruning=Nothing
http://snapshots.blackblocks.io/mainnet/celestia/fullnode/archive/
Install dependencies
sudo apt update
sudo apt install lz4 curl -y
Stop fullnode service
sudo systemctl stop celestia-appd.service
Backup validator state and clean data dir
cp ~/.celestia-app/data/priv_validator_state.json $HOME/.celestia-app/priv_validator_state.json.backup
rm -rf ~/.celestia-app/data
Download snapshot
The download of the snapshot will take a lot of time. Consider using a terminal which you can detach and runs in background like tmux.
curl -L http://snapshots.blackblocks.io/mainnet/celestia/fullnode/archive/celestia_fullnode_archive_celestia_latest.tar.lz4| tar -Ilz4 -xf - -C ~/.celestia-app/data
Start and monitor fullnode
sudo systemctl start celestia-appd.service
sudo journalctl -fu celestia-appd.service
Every Sunday 06:00 UTC
No pruning
http://snapshots.blackblocks.io/mainnet/celestia/bridge/archive/
Install dependencies
sudo apt update
sudo apt install lz4 curl -y
Stop bridge node
sudo systemctl stop celestia-bridge.service
Clean data dir
cd ~/.celestia-bridge
sudo rm -r blocks data index inverted_index transients
Download snapshot
The download of the snapshot will take a lot of time. Consider using a terminal which you can detach and runs in background like tmux.
curl -o - -L http://snapshots.blackblocks.io/mainnet/celestia/bridge/archive/celestia_bridge_archive_celestia_latest.tar.lz4 | lz4 -c -d - | tar -x
Start and monitor bridge node
sudo systemctl start celestia-bridge.service
sudo journalctl -fu celestia-bridge.service