Snapshot

Get synced with the network quickly using our daily snapshots

Chain ID: stride-1

Node Version: v8.0.0

Pre-requisite Setup

Configure the pruning settings as follows: app.toml

pruning = "custom"

pruning-keep-recent = "100"
pruning-keep-every = "0"
pruning-interval = "10"

config.toml

indexer = "null"

Install lz4 if not already installed. This guide assumes that a Debian based OS is used:

sudo apt update &&\

sudo apt install -y snapd &&\

sudo snap install lz4

Stop the node. If not using cosmovisor to manage the stride daemon, use whatever service you use to manage the stride daemon

Reset the node. Depending on the chain, this can be done in one of two ways.

WARNING: While this should not wipe the priv_validator_key.json file, you should back up this key on validators prior to running the following commands.

Basic Setup

Download the latest snapshot:

Extract the snapshot to the database location:

Restart the node assuming no errors were thrown while extracting the snapshot:

Remove the snapshot archive to free up disk space

Make sure that the node is running without issues

This method requires less disk space than the previous method and is less commands overall.

Download and unarchive the snapshot to the database directory

Make sure that the node is running without issues

Last updated