# 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
```
