From e89c14b3f87c202507a99004de8167124dbe37e7 Mon Sep 17 00:00:00 2001 From: lqS0317 <102649974+lqS0317@users.noreply.github.com> Date: Fri, 10 May 2024 11:08:08 +0800 Subject: [PATCH] update_snapshot_date (#85) * update_snapshot_date --------- Co-authored-by: lqS0317 --- run-node-mainnetv2.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/run-node-mainnetv2.md b/run-node-mainnetv2.md index 65ffa4e..5b244f2 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/20240509-mainnet-chaindata.tar.zst + - **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240508-mainnet-chaindata.tar.zst - **Europe:** https://s3.amazonaws.com/snapshot-us.mantle.xyz/20240323-mainnet-chaindata.tar.zst - **Fullnode** - - **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240322-mainnet-full-chaindata.tar.zst + - **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240508-mainnet-full-chaindata.tar.zst example: @@ -50,9 +50,9 @@ mkdir -p ./data/mainnet-geth # latest snapshot tarball # Replace this link to suit your needs -wget https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/mantle-archive.20240315.tar.zst +wget https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240508-mainnet-chaindata.tar.zst -tar --use-compress-program=unzstd -xvf mantle-archive.20240315.tar.zst -C /home/ssm-user/git/networks/data/mainnet-geth +tar --use-compress-program=unzstd -xvf 20240508-mainnet-chaindata.tar.zst -C /home/ssm-user/git/networks/data/mainnet-geth ```