Skip to content

Snapshot

Snapshots are created automatically every 6 hours starting from 00:00 UTC
Pruning: 100/0/10 | Indexer: null | Version Tag: v1.0.0-prerelease

Install tools

sudo apt update && sudo apt install lz4 -y

Stop the service and reset the data

sudo systemctl stop arkeod
cp $HOME/.arkeo/data/priv_validator_state.json $HOME/.arkeo/priv_validator_state.json.backup
arkeod tendermint unsafe-reset-all --home $HOME/.arkeo --keep-addr-book

Download latest snapshot

curl -o - -L https://snapshots.moonbridge.team/testnet/arkeo/snapshot_latest.tar.lz4 | lz4 -dc - | tar -x -C $HOME/.arkeo
mv $HOME/.arkeo/priv_validator_state.json.backup $HOME/.arkeo/data/priv_validator_state.json

Start the service and check the logs

sudo systemctl start arkeod && sudo journalctl -u arkeod -f --no-hostname -o cat