> For the complete documentation index, see [llms.txt](https://docs.konsortech.xyz/node/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.konsortech.xyz/node/mainnet/bluzelle/snapshot.md).

# Snapshot

```
sudo systemctl stop curiumd
cp $HOME/.curium/data/priv_validator_state.json $HOME/.curium/priv_validator_state.json.backup
rm -rf $HOME/.curium/data

SNAP_NAME=$(curl -s https://snapshot1.konsortech.xyz/bluzelle/ | egrep -o ">bluzelle-snapshot.*\.tar.lz4" | tr -d ">")
curl https://snapshot3.konsortech.xyz/bluzelle/${SNAP_NAME} | lz4 -dc - | tar -xf - -C $HOME/.curium
mv $HOME/.curium/priv_validator_state.json.backup $HOME/.curium/data/priv_validator_state.json

sudo systemctl restart curiumd && journalctl -u curiumd -f -o cat
```
