Skip to content

Snapshot

Snapshots are created automatically every 12 hours starting from 00:00 UTC
Pruning: 100/0/10 | Indexer: null | Version Tag: v0.1.0-devnet

Install tools

sudo apt update && sudo apt install lz4 -y

Stop the service and reset the data

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

Download latest snapshot

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

Start the service and check the logs

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