Snapshot
Check MetaData ;
npx
wget -O metadata.txt "https://quicksync.exoscan.org/s/jeex74GPkSfmxSn/download?path=/snapshots&files=metadata.txt"
cat metadata.txt
๐ Things to check:
- Chain ID: It should be exocoretestnet_233-7 .
- Block Number:
npx
exocored query block | jq -r .block.header.height
- If the block number shown here is lower than the one in metadata.txt, the snapshot will be useful.
Download the Snapshot :
npx
rm -rf $HOME/snapshot.tar.lz4
wget -O $HOME/snapshot.tar.lz4 "https://quicksync.exoscan.org/s/jeex74GPkSfmxSn/download?path=/snapshots&files=exocoretestnet_233-7-pruned.tar.lz4"
Stop the Node
npx
systemctl stop exocored
Clear Existing Data
- To ensure a clean sync, delete the old blockchain data:
npx
rm -rf $HOME/data/*.db $HOME/data/snapshots $HOME/data/cs.wal
Extract the Snapshot
- First, check if lz4 is installed. If not, install it using:
npx
sudo apt install lz4 -y
- Now, extract the snapshot:
npx
tar --use-compress-program=lz4 -xvf $HOME/snapshot.tar.lz4 -C $HOME/
Start the Node
npx
systemctl start exocored
Check Block Height
npx
exocored query block | jq -r .block.header.height
Delete the Snapshot File
npx
rm -rf $HOME/snapshot.tar.lz4
- โ Your node is now synchronized using a snapshot! ๐