Back to all services Back to all services
XRPL logo

XRPL EVM

Sidechain

chainID: xrplevm_1449000-1 TESTNET

XRPL Snapshots

This snapshot can be downloaded using aria2c, a high-performance download tool that splits large files into multiple parts and downloads them in parallel. This significantly improves download speed and reliability, especially for blockchain data.

Pruned Snapshot

Live

Source: https://xrpl.cumulo.com.es/snapshots/

Last Update: 2026-05-18 07:03:24

File: https://xrpl.cumulo.com.es/snapshots/latest_xrpl_snapshot.tar.zst

Date: 2026-05-18

Latest Ledger: 6856756

Size: 16GiB

How to Restore (Pruned)

Follow these steps to restore your XRPL node using the pruned snapshot:

Install Required Packages:

sudo apt update && sudo apt install -y aria2 zstd curl

Download Snapshot (fast):

aria2c -x 16 -s 16 -k 1M -o snapshot.tar.zst "https://xrpl.cumulo.com.es/snapshots/latest_xrpl_snapshot.tar.zst"

Stop Node + Restore Snapshot:

SERVICE=exrpd.service
STATE=$HOME/.exrpd/data/priv_validator_state.json
BACKUP=/tmp/priv_validator_state.json

sudo systemctl stop \$SERVICE

# Backup validator state BEFORE wiping data dir
if [ -f "\$STATE" ]; then
  cp "\$STATE" "\$BACKUP"
fi

rm -rf "$HOME/.exrpd/data/*"
aria2c -x 16 -s 16 -k 1M -o snapshot.tar.zst "https://xrpl.cumulo.com.es/snapshots/latest_xrpl_snapshot.tar.zst"
# Extract snapshot
tar --use-compress-program=zstd -xf snapshot.tar.zst -C $HOME/.exrpd/data
rm -f snapshot.tar.zst

# Restore validator state AFTER extraction (prevents double-sign / state regression)
if [ -f "\$BACKUP" ]; then
  mv "\$BACKUP" "\$STATE"
fi

sudo systemctl start \$SERVICE

Archive Snapshot

Degraded

Source status: Error loading data

Source: https://xrpl.cumulo.org.es/snapshots/

File: Unavailable

Last Update: N/A

Date: N/A

Latest Ledger: N/A

Size: N/A

How to Restore (Archive)

Follow these steps to restore your XRPL node using the archive snapshot:

Install Required Packages:

sudo apt update && sudo apt install -y aria2 zstd curl

Download Snapshot (fast):

echo "Archive snapshot unavailable"

Stop Node + Restore Snapshot:

SERVICE=exrpd.service
STATE=$HOME/.exrpd/data/priv_validator_state.json
BACKUP=/tmp/priv_validator_state.json

sudo systemctl stop \$SERVICE

# Backup validator state BEFORE wiping data dir
if [ -f "\$STATE" ]; then
  cp "\$STATE" "\$BACKUP"
fi

rm -rf "$HOME/.exrpd/data/*"
echo "Archive snapshot unavailable"
# Extract snapshot
tar --use-compress-program=zstd -xf snapshot.tar.zst -C $HOME/.exrpd/data
rm -f snapshot.tar.zst

# Restore validator state AFTER extraction (prevents double-sign / state regression)
if [ -f "\$BACKUP" ]; then
  mv "\$BACKUP" "\$STATE"
fi

sudo systemctl start \$SERVICE