The snapshot is designed for node opeartors to run an efficient node on Berachain v2 chain. To make the snapshot as small as possible while still viable as a validator, we use the following setting to save on the disk space. It might be helpful for you to sync with our snapshot periodically because Tendermint chain storage grows over time regardless of the pruning. Since we periodically state-sync our snapshot nodes, you might notice that sometimes the size of our snapshot is surprisingly small.
Reset your node. This will erase your node database. If you are already running validator, be sure you backed up your `priv_validator_key.json` prior to running the the command. The command does not wipe the file. However, you should have a backup of it already in a safe location.
WARNING: If you use this snapshot on a validator node during a chain halt, make sure you back up priv_validator_state.json and then replace it after the snapshot is extracted but before you start the node process. This is very important in order to avoid double-sign.
# Stop your node
sudo systemctl stop beacond
# Back up priv_validator_state.json if needed
cp $HOME/.beacond/data/priv_validator_state.json $HOME/.beacond/priv_validator_state.json.backup
# Reset tendermint chain
beacond tendermint unsafe-reset-all --home $HOME/.beacond --keep-addr-book
Download latest snapshot
# Download the Berachain v2 snapshot
wget -O berachain_v2_latest.tar.lz4 https://snapshots.tienthuattoan.com/testnet/berachain-v2/berachain_v2_latest.tar.lz4
# Decompress the Berachain v2 snapshot
lz4 -c -d berachain_v2_latest.tar.lz4 | tar -x -C $HOME/.beacond
# Replace with the backed-up priv_validator_state.json
mv $HOME/.beacond/priv_validator_state.json.backup $HOME/.beacond/data/priv_validator_state.json