# 📸  Snapshot

## *Snapshot Consensus Node (pruned)* <a href="#snap" id="snap"></a>

* updated every 4h

***Download and unpack snapshot***

```bash
sudo systemctl stop celestia-appd

cp $HOME/.celestia-app/data/priv_validator_state.json $HOME/.celestia-app/priv_validator_state.json.backup

rm -rf $HOME/.celestia-app/data
curl -L https://snapshots1.validexis.com/celestia-mainnet/snap_celestia-prun.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.celestia-app/

mv $HOME/.celestia-app/priv_validator_state.json.backup $HOME/.celestia-app/data/priv_validator_state.json

sudo systemctl restart celestia-appd && sudo journalctl -u celestia-appd -f
```

## *Snapshot Consensus Full Node* <a href="#snapshot-archive" id="snapshot-archive"></a>

{% hint style="info" %} <mark style="color:blue;">It's recommended to use Tmux or Screen for downloads, as the process may take several hours, ensuring that the session remains active even if the connection is interrupted.</mark>
{% endhint %}

* **Height**: 8 538 199
* **Generated**: 2025-11-16T16:27:28Z
* **Size**: 5.5 TB
* **Indexer:** kv

***Download and unpack snapshot***

```bash
sudo systemctl stop celestia-appd

cp $HOME/.celestia-app/data/priv_validator_state.json $HOME/.celestia-app/priv_validator_state.json.backup

rm -rf $HOME/.celestia-app/data
curl -L https://snapshots1.validexis.com/celestia-mainnet/snap_celestia-archive_8538199.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.celestia-app/

mv $HOME/.celestia-app/priv_validator_state.json.backup $HOME/.celestia-app/data/priv_validator_state.json

sudo systemctl restart celestia-appd && sudo journalctl -u celestia-appd -f
```


---

# 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://services.validexis.com/mainnets/celestia/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.
