← Back to Apollo Validator

AtomOne Snapshot Service

Snapshots for AtomOne mainnet. Updated every 6 hours. Node does not stop during snapshot creation.

Latest Snapshot

NetworkAtomOne Mainnet
Chain IDatomone-1
Height10,013,885
Size8.1G (zstd compressed)
Created2026-08-22T17:13:16Z
Binaryatomoned v4.1.0
Download Snapshot (8.1G)

Restore from Snapshot

WARNING: Stop the node before restoring. If you are running a validator, back up priv_validator_state.json FIRST.
1Install zstd

Decompression utility for .tar.zst files.

sudo apt install zstd -y
2Stop the node
sudo systemctl stop atomoned
3Back up validator state (validators only)
cp $HOME/.atomone/config/priv_validator_state.json $HOME/priv_validator_state.json.bak
4Download the snapshot
wget -O atomone-snapshot.tar.zst https://snapshots.apollo-validator.eu/atomone/snapshots/latest.tar.zst
5Restore from snapshot
rm -rf $HOME/.atomone/data/application.db $HOME/.atomone/data/state.db $HOME/.atomone/data/evidence.db
tar -I zstd -xf atomone-snapshot.tar.zst -C $HOME/.atomone/data/
6Restore validator state (validators only)
cat $HOME/priv_validator_state.json.bak > $HOME/.atomone/config/priv_validator_state.json
7Start the node
sudo systemctl start atomoned
8Verify and clean up
sudo systemctl status atomoned
rm -v atomone-snapshot.tar.zst

Snapshot Info

curl -s https://snapshots.apollo-validator.eu/atomone/latest.json | jq

Returns JSON with height, size, and download URL.

Snapshots are created every 6 hours without stopping the node. Only 2 latest snapshots are kept. Powered by Apollo Validator.