Snapshots

Be careful with snapshot during network outages. If configured incorrectly, you can get a double signature

Consensus Node

Snapshot Pruned

time: every 6 hours | pruning: custom: 100/10 | indexer: null

🌐 https://share106-3.utsa.tech/celestia/

cd $HOME
systemctl stop celestia-appd

cp $HOME/.celestia-app-main/data/priv_validator_state.json $HOME/.celestia-app-main/priv_validator_state.json.backup

rm -rf $HOME/.celestia-app-main/data

curl -o - -L https://share106-3.utsa.tech/celestia/celestia_pruned_mainnet.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.celestia-app-main/

mv $HOME/.celestia-app-main/priv_validator_state.json.backup $HOME/.celestia-app-main/data/priv_validator_state.json

systemctl restart celestia-appd && journalctl -u celestia-appd -f -o cat

Snapshot Archive

time: every 3 days | pruning: nothing | indexer: kv

🌐 https://share106-4.utsa.tech/celestia/

cd $HOME
systemctl stop celestia-appd

cp $HOME/.celestia-app-main/data/priv_validator_state.json $HOME/.celestia-app-main/priv_validator_state.json.backup

rm -rf $HOME/.celestia-app-main/data 

curl -o - -L https://share106-4.utsa.tech/celestia/celestia_archive_mainnet.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.celestia-app-main/

mv $HOME/.celestia-app-main/priv_validator_state.json.backup $HOME/.celestia-app-main/data/priv_validator_state.json

systemctl restart celestia-appd && journalctl -u celestia-appd -f -o cat

Bridge Node

Snapshot Archive

every 7 day | /root/.celestia-bridge-mocha-4 | archive

🌐 https://share106-1.utsa.tech/celestia/

cd $HOME
systemctl stop celestia-bridge

rm -rf /root/.celestia-bridge/{blocks,data,index,inverted_index,transients,.lock}

curl -o - -L https://share106-2.utsa.tech/celestia/celestia_bridge_mainnet.tar.lz4 | lz4 -c -d - | tar -x -C /root/.celestia-bridge/

systemctl restart celestia-bridge && journalctl -u celestia-bridge -f -o cat

Full Node

Snapshot

every 30 hours | /root/.celestia-full | catchup headers: true

🌐 https://share106-6.utsa.tech/celestia/

cd $HOME
systemctl stop celestia-full

rm -rf /root/.celestia-full/{blocks,data,index,inverted_index,transients,.lock}

curl -o - -L https://share106-6.utsa.tech/celestia/celestia_full_mainnet.tar.lz4 | lz4 -c -d - | tar -x -C /root/.celestia-full/

systemctl restart celestia-full && journalctl -u celestia-full -f -o cat

Light Node

Snapshot

every 1 day | /root/.celestia-light | archive

🌐 https://share106-4.utsa.tech/celestia/

cd $HOME
systemctl stop celestia-light

rm -rf ~/.celestia-light/{data,.lock}

curl -o - -L https://share106-4.utsa.tech/celestia/celestia_light_mainnet.tar.lz4 | lz4 -c -d - | tar -x -C $HOME/.celestia-light/

systemctl restart celestia-light && journalctl -u celestia-light -f -o cat

Last updated