Skip to content

Commit

Permalink
update snapshot tar date
Browse files Browse the repository at this point in the history
  • Loading branch information
mantle-github-bot committed Jun 30, 2024
1 parent e56d5cc commit 41bb849
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions run-node-mainnetv2.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ After mantle upgrade to v2, you have to start the node with latest snapshot.
You can choose different types of node running modes (fullnode or archive) based on your needs, thus selecting different snapshots for node synchronization. Additionally, we provide download links for snapshots in different regions to expedite your snapshot downloads. (Given that fullnode snapshots are relatively small, we will not provide additional download links.) Currently supported regions include:

- **Archive**
- **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240616-mainnet-chaindata.tar.zst
- **US:** https://s3.amazonaws.com/snapshot-us.mantle.xyz/20240616-mainnet-chaindata.tar.zst
- **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240623-mainnet-chaindata.tar.zst
- **US:** https://s3.amazonaws.com/snapshot-us.mantle.xyz/20240623-mainnet-chaindata.tar.zst
- **Fullnode**
- **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240616-mainnet-full-chaindata.tar.zst
- **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240623-mainnet-full-chaindata.tar.zst

example:

Expand All @@ -51,11 +51,11 @@ mkdir -p ./data/mainnet-geth
# latest snapshot tarball
# You can choose one of two ways to download,Using aria2c to download can improve download speed, but you need to install aria2
1.
wget https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240616-mainnet-chaindata.tar.zst
wget https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240623-mainnet-chaindata.tar.zst
2.
aria2c -x 16 -s 16 -k 100M https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240616-mainnet-chaindata.tar.zst
aria2c -x 16 -s 16 -k 100M https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240623-mainnet-chaindata.tar.zst

tar --use-compress-program=unzstd -xvf 20240616-mainnet-chaindata.tar.zst -C ./data/mainnet-geth
tar --use-compress-program=unzstd -xvf 20240623-mainnet-chaindata.tar.zst -C ./data/mainnet-geth

```

Expand Down
2 changes: 1 addition & 1 deletion run-node-sepolia.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ mkdir -p ./data/sepolia-geth

# latest snapshot tarball
# You can choose one of two ways to download,Using aria2c to download can improve download speed, but you need to install aria2
tarball="20240616-sepolia-chaindata.tar.zst"
tarball="20240623-sepolia-chaindata.tar.zst"
1.
wget https://s3.ap-southeast-1.amazonaws.com/snapshot.sepolia.mantle.xyz/${tarball}
2.
Expand Down

0 comments on commit 41bb849

Please sign in to comment.