Polygon Mainnet (Pruned)

ChainBlockUpdatedDownload

Heimdall - Mainnet

20,180,172

24-08-29

491 GB

ChainBlockUpdatedDownload

Bor - Mainnet

61,180,741

24-08-29

2.2 TB

Snapshots are taken automatically every 1 week.

Heimdall Mainnet

1 - Stop the service and reset the data.

sudo systemctl stop heimdalld.service
sudo rm -rf /var/lib/heimdall/data

2 - Download the heimdall manifest file.

sudo wget https://snapshots.stakepool.dev.br/heimdall/heimdall-mainnet.txt

3 - Run:

sudo mkdir -p data && cd data && sudo aria2c -j 22 -x 16 -s 32 --disk-cache=1024M --file-allocation=falloc --timeout=30 --retry-wait=5 --console-log-level=warn --auto-file-renaming=false --summary-interval=3600 -c -i ../heimdall-mainnet.txt && sudo chown -R heimdall:nogroup ./

4 - Move the data directory.

sudo mv data /var/lib/heimdall

5 - Restart the service and check the log

sudo systemctl start heimdalld.service && sudo journalctl -u heimdalld.service -f -o cat

Bor Mainnet

1 - Stop the service and reset the chaindata

sudo systemctl stop bor.service
sudo rm -rf /var/lib/bor/data/bor/chaindata

2 - Download the bor manifest file.

sudo wget https://snapshots.stakepool.dev.br/bor-mainnet.txt

3 - Run:

sudo mkdir -p chaindata && cd chaindata && sudo aria2c -j 22 -x 16 -s 32 --disk-cache=1024M --file-allocation=falloc --timeout=30 --retry-wait=5 --console-log-level=warn --auto-file-renaming=false --summary-interval=3600 -c -i ../bor-mainnet.txt && sudo chown -R bor:nogroup ./

4 - Move the chaindata directory.

sudo mv chaindata /var/lib/bor/data/bor

5 - Restart the service and check the log.

sudo systemctl start bor.service && sudo journalctl -u bor.service -f -o cat

Last updated