From 7cf7f9b135edfb8d28e92f214092fc61b69f1b18 Mon Sep 17 00:00:00 2001 From: mantle-github-bot Date: Sun, 26 May 2024 12:02:11 +0000 Subject: [PATCH] update snapshot tar date --- 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 048bb34..20fc98f 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/20240512-mainnet-chaindata.tar.zst + - **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240519-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/20240512-mainnet-full-chaindata.tar.zst + - **Asia:** https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240519-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/20240512-mainnet-chaindata.tar.zst +wget https://s3.ap-southeast-1.amazonaws.com/snapshot.mantle.xyz/20240519-mainnet-chaindata.tar.zst -tar --use-compress-program=unzstd -xvf 20240512-mainnet-chaindata.tar.zst -C /home/ssm-user/git/networks/data/mainnet-geth +tar --use-compress-program=unzstd -xvf 20240519-mainnet-chaindata.tar.zst -C /home/ssm-user/git/networks/data/mainnet-geth ```