Snapshot
note
Snapshots facilitate the integration of a new node into the network by restoring the application state from a backup file. These snapshots comprise compressed copies of the chain data directory. To maintain the compactness of backup files, the snapshot server undergoes periodic state synchronization processes.
Snapshots are taken automatically every 6 hours starting at 05:30 UTC
pruning: 100/0/19 | indexer: null | version tag: 1.0.1
Instructionsβ
Stop the service and reset the dataβ
sudo systemctl stop atomoned.service
cp $HOME/.atomone/data/priv_validator_state.json $HOME/.atomone/priv_validator_state.json.backup
rm -rf $HOME/.atomone/data
Download latest snapshotβ
curl -L https://snapshots.owlstake.com/atomone-1/snapshot_latest.tar.lz4 | tar -I lz4 -xf - -C $HOME/.atomone
mv $HOME/.atomone/priv_validator_state.json.backup $HOME/.atomone/data/priv_validator_state.json
Restart the service and check the logβ
sudo systemctl start atomoned.service && sudo journalctl -u atomoned.service -f --no-hostname -o cat