Skip to main content

Snapshot

Info:

  • Block height and Size: here
  • Version: v1.0.20

How to use

1. Stop Pell Node

sudo systemctl stop pelld

Replace to your systemd service

2. Remove data folder

sudo rm -rf $HOME/.pellcored/data

3. Download and extract snapshot

cd $HOME
wget https://snapshot.spidernode.net/pell_snapshot.lz4 -O pell_snapshot.lz4

# Ensure the data directory exists
DATA_DIR="$HOME/.pellcored/data"
mkdir -p "$DATA_DIR"

# Extract the snapshot to the DATA directory
echo "Extracting snapshot..."
lz4 -d pell_snapshot.lz4 | pv | tar --strip-components=1 -x -C "$DATA_DIR"

# Verify extraction
echo "Contents of $DATA_DIR:"
ls "$DATA_DIR"

4. Restart node

sudo systemctl restart pelld

5. Delete snapshot file

cd #HOME
sudo rm -rf pell_snapshot.lz4