Skip to content

Lumera Snapshot

Contents

Mainnet

ℹ️ Snapshot Info

All snapshot-related information — including the latest block height, file size, MD5/SHA256 checksums, last updated time, and download links — is now available at:

👉 linknode.org/snapshots

Snapshots are maintained by LinkNode, our infrastructure division supporting blockchain networks with snapshots, RPC, API, and gRPC endpoints.

Prerequisites

Before you begin, ensure you have the following:

  • The lumerad binary is installed.
  • lz4 is installed. If not, run: sudo apt-get install lz4 -y.

  1. Download Snapshot
bash
mkdir -p ~/snapshot
cd ~/snapshot

SNAPSHOT_URL="https://vault.astrostake.xyz/mainnet/lumera/lumera_snapshot.tar.lz4"
SNAPSHOT_FILE=$(basename "$SNAPSHOT_URL")

if [ ! -f "$SNAPSHOT_FILE" ]; then
    echo "Downloading $SNAPSHOT_FILE..."
    wget "$SNAPSHOT_URL"
else
    echo "$SNAPSHOT_FILE already exists. Skipping download."
fi
  1. Stop Service
bash
sudo systemctl stop lumerad.service
  1. Backup & Delete Old Data
bash
cp $HOME/.lumera/data/priv_validator_state.json $HOME/.lumera/priv_validator_state.json.backup
bash
rm -rf $HOME/.lumera/data
  1. Extract & Restore
bash
lz4 -c -d lumera_snapshot.tar.lz4 | tar -x -C $HOME/.lumera
bash
mv $HOME/.lumera/priv_validator_state.json.backup $HOME/.lumera/data/priv_validator_state.json
  1. Restart Service
bash
sudo systemctl restart lumerad
sudo journalctl -u lumerad -f -o cat

Testnet

ℹ️ Snapshot Info

All snapshot-related information — including the latest block height, file size, MD5/SHA256 checksums, last updated time, and download links — is now available at:

👉 linknode.org/snapshots

Snapshots are maintained by LinkNode, our infrastructure division supporting blockchain networks with snapshots, RPC, API, and gRPC endpoints.

Prerequisites

Before you begin, ensure you have the following:

  • The lumerad binary is installed.
  • lz4 is installed. If not, run: sudo apt-get install lz4 -y.

  1. Download Snapshot
bash
mkdir -p ~/snapshot
cd ~/snapshot

SNAPSHOT_URL="https://vault2.astrostake.xyz/testnet/lumera/lumera_snapshot.tar.lz4"
SNAPSHOT_FILE=$(basename "$SNAPSHOT_URL")

if [ ! -f "$SNAPSHOT_FILE" ]; then
    echo "Downloading $SNAPSHOT_FILE..."
    wget "$SNAPSHOT_URL"
else
    echo "$SNAPSHOT_FILE already exists. Skipping download."
fi
  1. Stop Service
bash
sudo systemctl stop lumerad.service
  1. Backup & Delete Old Data
bash
cp $HOME/.lumera/data/priv_validator_state.json $HOME/.lumera/priv_validator_state.json.backup
bash
rm -rf $HOME/.lumera/data
  1. Extract & Restore
bash
lz4 -c -d lumera_snapshot.tar.lz4 | tar -x -C $HOME/.lumera
bash
mv $HOME/.lumera/priv_validator_state.json.backup $HOME/.lumera/data/priv_validator_state.json
  1. Restart Service
bash
sudo systemctl restart lumerad
sudo journalctl -u lumerad -f -o cat