Polygon Amoy

Snapshots are taken automatically every 1 week.

Heimdall Amoy

1 - Stop the service and reset the data.

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

2 - Download the heimdall

sudo aria2c -j 22 -x 16 -c https://snapshots.stakepool.dev.br/data.tar.zst

3 - Run:

sudo zstd -dc --fast=1 data.tar.zst | tar -xvf -

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 Amoy

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.

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

3 - Run:

sudo mkdir -p chaindata && cd chaindata && sudo aria2c -j 12 -x 12 --console-log-level=warn --auto-file-renaming=false --summary-interval=3600 -c -i ../bor-amoy.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