Persistence Snapshots

Service provided by BlueStake

Snapshots

To help validators to deploy or recover quickly, we provide daily archives of the Blockchain, from high-performance infrastructure:

FileDateSizeDownload
core-1-pruned-16531811.tar.lz43 hours ago1006 MBDownload

Instructions

# Install dependencies if needed
sudo apt install curl tar jq aria2 -y

# Download snapshot
cd $HOME/.persistenceCore/
fileurl=$(curl https://persistence.bluestake.net/snapshots.json | jq -r '.snapshots[0].url')
aria2c -x5 $fileurl

# Stop Persistence Daemon if its running
systemctl stop persistence.service

# Move or remove old data
mv $HOME/.persistenceCore/data $HOME/.persistenceCore/data.bak

# Extract snapshot to data dir
tar xf $(basename $fileurl)

# Start Persistence Daemon
systemctl start persistence.service