The snapshot is designed for node opeartors to run an efficient node on Artela 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 artelad
# Back up priv_validator_state.json if needed
cp $HOME/.artelad/data/priv_validator_state.json $HOME/.artelad/priv_validator_state.json.backup
# Reset tendermint chain
artelad tendermint unsafe-reset-all --home $HOME/.artelad --keep-addr-book
Download latest snapshot
# Download the Artela snapshot
wget -O artela_latest.tar.lz4 https://snapshots.tienthuattoan.com/testnet/artela/artela_latest.tar.lz4
# Decompress the Artela snapshot
lz4 -c -d artela_latest.tar.lz4 | tar -x -C $HOME/.artelad
# Replace with the backed-up priv_validator_state.json
mv $HOME/.artelad/priv_validator_state.json.backup $HOME/.artelad/data/priv_validator_state.json