# Snapshot

<figure><img src="https://pbs.twimg.com/profile_images/1404775608798699522/ohhSUimj_400x400.jpg" alt="" width="188"><figcaption></figcaption></figure>

***

| Version | Chain-id      | Wasm    |
| ------- | ------------- | ------- |
| v2.5.3  | laozi-mainnet | ENABLED |

### Snapshot Guide

### Setup Server

```shell
# Install Necessary package
sudo apt update
sudo apt-get install snapd lz4 -y
```

Turn off state-sync

```shell
sed -i.bak -E "s|^(enable[[:space:]]+=[[:space:]]+).*$|\1false|" ~/.band/config/config.toml
```

```shell
# Stop the service and reset the data
sudo systemctl stop bandd
cp $HOME/.band/data/priv_validator_state.json $HOME/.band/priv_validator_state.json.backup
rm -rf $HOME/.band/data
```

```shell
# Download Latest Snapshot
curl -L https://snapshots.indonode.net/band/band-snapshot.tar.lz4 | lz4 -dc - | tar -xf - -C $HOME/.band
mv $HOME/.band/priv_validator_state.json.backup $HOME/.band/data/priv_validator_state.json
```

```shell
# Restart Service
sudo systemctl restart bandd && sudo journalctl -fu bandd -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://docs.indonode.net/mainnet/band/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.
