Snapshots

How to use


curl --http1.1 -sS https://snapshots.bharvest.dev/testnet/story/story_1415559.tar.lz4 | lz4 -d | tar -xvf -

Configurations for our node


Our snapshotting node's configuration is here.

app.toml

# Prune Type
pruning = "everything"

config.toml

indexer = "null"

Are you validator?


If you are running validator node, priv_validator_state.json file is very important.

Thus, we recommand you using a pre-reviewed script. here is simple script to download snapshot.

export NODE_HOME="your node home. eg) /data/.story/"

cd $NODE_HOME
cd data
mv priv_validator_state.json ..
rm -r *
cd ..
wget ${SNAPSHOT_URL} | lz4 -d | tar -xvf -

mv priv_validator_state.json data/

Last updated