Polygon Amoy

Chain
Age
DB
Scheme
Type

Amoy - heimdall

24-12-15

goleveldb

hash

full

Amoy - bor

24-12-15

leveldb

hash

pruned

Amoy - bor

24-12-15

Pebble

Path

full

Snapshots are taken automatically every 1 week.

Heimdall Amoy

1. Stop the service and reset the data

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

2. Download the Heimdall snapshot

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

3. Run

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

4. Move the data directory

mv data /var/lib/heimdall

5. Restart the service and check the log

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

Bor Amoy (Leveldb)

1. Stop the service and reset the chaindata

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

2. Download the Bor snapshot

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

3. Run

zstd -dc --fast=1 chaindata.tar.zst | tar -xvf -

4. Move the chaindata directory

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

5. Restart the service and check the log

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

Bor Amoy (PBSS)

1. Stop the service and reset the chaindata

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

2. Download the Bor snapshot

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

3. Run

zstd -dc --fast=1 chaindata-pbs.tar.zst | tar -xvf -

4. Move the chaindata directory

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

5. Restart the service and check the log

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

Last updated