> For the complete documentation index, see [llms.txt](https://services.liveraven.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.liveraven.net/cosmos-testnets/warden-protocol/snapshots.md).

# Snapshot

## **Stop the service and reset the data**

```bash
sudo systemctl stop wardend
cp $HOME/.warden/data/priv_validator_state.json $HOME/.warden/priv_validator_state.json.backup
rm -rf $HOME/.warden/data
```

## **Download latest snapshot**

```bash
curl -L http://snapshots.liveraven.net/snapshots/testnet/warden-protocol/buenavista-1_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.warden
mv $HOME/.warden/priv_validator_state.json.backup $HOME/.warden/data/priv_validator_state.json
```

## **Restart the service and check the log**

```bash
sudo systemctl start wardend && sudo journalctl -u wardend -fn 100 -o cat
```
