Skip to main content

Agoric

Download daily snapshot:

LATEST HEIGHTSIZECHAIN IDPRUNINGDATETIMELINK
972130537Gagoric-3archive2023-05-0303:41:43agoric-3_2023-05-03.tar

Instructions

Our tips

We are providing several commands in order to download and extract the snapshot to its corresponding place. Don't hesitate to adjust the commands according to your setup.

Stop the service:

sudo systemctl stop agd.service
Back up your priv_validator_state.json

Please make sure you have a copy of priv_validator_state.json from data folder.

  1. Backup priv_validator_state.json:
cp $HOME/.agd/data/priv_validator_state.json $HOME/priv_validator_state.json
  1. Delete the data:
agd tendermint unsafe-reset-all --home $HOME/.agd

Download the snapshot archive:

wget -O - https://snapshots.stakecraft.com/agoric-3_2023-05-03.tar | tar -xvf -C ~/.agd/data/ 

Copy your priv_validator_state.json to its original place:

mv $HOME/priv_validator_state.json $HOME/.agd/data/priv_validator_state.json

Start service and check the logs:

sudo systemctl start agd.service
sudo journalctl -u agd.service -f