# Snapshot

## Updates every 4 hours

## Install dependencies, if needed

```
sudo apt update
sudo apt install lz4 -y
```

## Sync from Snapshot

| Height  | Size     | Creation Time (UTC+3) |
| ------- | -------- | --------------------- |
| 4514500 | 101.6 GB | 2026-01-30\_07:11:30  |

```
sudo systemctl stop namadad

cp $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft/data/priv_validator_state.json $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/priv_validator_state_backup.json

rm -rf $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/db
rm -rf $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/tx_wasm_cache
rm -rf $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/vp_wasm_cache
rm -rf $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft/data

SNAP_NAME=$(curl -s https://snapshots.l0vd.com/mainnets/namada/namada.5f5de2dd1b88cba30586420/ | egrep -o ">namada.5f5de2dd1b88cba30586420.*\.tar.lz4" | tr -d ">")
curl https://snapshots.l0vd.com/mainnets/namada/namada.5f5de2dd1b88cba30586420/${SNAP_NAME} | lz4 -dc - | tar -xf - -C $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420

mv $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/priv_validator_state_backup.json $HOME/.local/share/namada/namada.5f5de2dd1b88cba30586420/cometbft/priv_validator_state.json

sudo systemctl restart namadad
sudo journalctl -u namadad -f --no-hostname -o cat
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://chain-services.l0vd.com/mainnets/namada/snapshot.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
