Lumera Validator Mainnet Snapshot
⏳Fetching snapshot data...
ℹ️ Snapshot Info
Snapshots are maintained by LinkNode, our infrastructure division supporting blockchain networks with snapshots, RPC, API, and gRPC endpoints.
If the data above does not load, please check manually at linknode.org/snapshots
Prerequisites
Before you begin, ensure you have the following:
- The
lumeradbinary is installed. lz4is installed. If not, run:sudo apt-get install lz4 -y.
- 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- Stop Service
bash
sudo systemctl stop lumerad.service- Backup & Delete Old Data
bash
cp $HOME/.lumera/data/priv_validator_state.json $HOME/.lumera/priv_validator_state.json.backupbash
rm -rf $HOME/.lumera/data- Extract & Restore
bash
lz4 -c -d lumera_snapshot.tar.lz4 | tar -x -C $HOME/.lumerabash
mv $HOME/.lumera/priv_validator_state.json.backup $HOME/.lumera/data/priv_validator_state.json- Restart Service
bash
sudo systemctl restart lumerad
sudo journalctl -u lumerad -f -o cat