Snapshot

Catch the latest block faster by using our daily snapshots.

Snapshot

Chain ID: stride-1 | Latest Version Tag: v24.0.0

Snapshots allows a new node to join the network by recovering application state from a backup file. Snapshot contains compressed copy of chain data directory. To keep backup files as small as plausible, snapshot server is periodically beeing state-synced.

Snapshots are taken automatically every 24 hours

https://snapshots.stakeandrelax.net/snapshots/stride/snapshot/snapshot_latest.tar.lz4

Instructions

Stop the service and reset the data

sudo systemctl stop stride
cp $HOME/.stride/data/priv_validator_state.json $HOME/.stride/priv_validator_state.json.backup
rm -rf $HOME/.stride/data

Download latest snapshot

curl -L https://snapshots.stakeandrelax.net/snapshots/stride/snapshot_latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.stride
mv $HOME/.stride/priv_validator_state.json.backup $HOME/.stride/data/priv_validator_state.json

Add seeds

sed -i -e "s|^seeds *=.*|seeds = \"233feb9d2bed39c2287a3f881fa5cdabb9264c16@176.9.30.178:12256\"|" $HOME/.stride/config/config.toml

Restart the service and check the log

sudo systemctl start stride && sudo journalctl -u stride -f --no-hostname -o cat

Last updated