From 23e81c9b82955fa59488083dfaef94e988785288 Mon Sep 17 00:00:00 2001 From: mantle-github-bot Date: Sun, 2 Jun 2024 12:02:12 +0000 Subject: [PATCH] update snapshot tar date --- run-node-mainnetv2.md | 12 ++++++------ run-node-sepolia.md | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/run-node-mainnetv2.md b/run-node-mainnetv2.md index 1ecfecd..c76b4c3 100644 --- a/run-node-mainnetv2.md +++ b/run-node-mainnetv2.md @@ -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/20240519-mainnet-chaindata.tar.zst - - **US:** https://s3.amazonaws.com/snapshot-us.mantle.xyz/20240519-mainnet-chaindata.tar.zst + - **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240526-mainnet-chaindata.tar.zst + - **US:** https://s3.amazonaws.com/snapshot-us.mantle.xyz/20240526-mainnet-chaindata.tar.zst - **Fullnode** - - **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240519-mainnet-full-chaindata.tar.zst + - **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240526-mainnet-full-chaindata.tar.zst example: @@ -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/20240519-mainnet-chaindata.tar.zst +wget https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240526-mainnet-chaindata.tar.zst 2. -aria2c -x 16 -s 16 -k 100M https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240519-mainnet-chaindata.tar.zst +aria2c -x 16 -s 16 -k 100M https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240526-mainnet-chaindata.tar.zst -tar --use-compress-program=unzstd -xvf 20240519-mainnet-chaindata.tar.zst -C ./data/mainnet-geth +tar --use-compress-program=unzstd -xvf 20240526-mainnet-chaindata.tar.zst -C ./data/mainnet-geth ``` diff --git a/run-node-sepolia.md b/run-node-sepolia.md index 83d8dad..973db74 100644 --- a/run-node-sepolia.md +++ b/run-node-sepolia.md @@ -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="20240519-sepolia-chaindata.tar.zst" +tarball="20240526-sepolia-chaindata.tar.zst" 1. wget https://s3.ap-southeast-1.amazonaws.com/snapshot.sepolia.mantle.xyz/${tarball} 2.