From 91a78129d6332e73f5a082b85d3a0b5a3d33be69 Mon Sep 17 00:00:00 2001 From: Zblocker64 <105066639+Zblocker64@users.noreply.github.com> Date: Tue, 13 Aug 2024 10:32:29 -0500 Subject: [PATCH] Update snapshot server links --- .../run-an-akash-node/step9-blockchain-snapshot-use.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/akash-nodes/run-an-akash-node/step9-blockchain-snapshot-use.md b/akash-nodes/run-an-akash-node/step9-blockchain-snapshot-use.md index cad94123..48e0be49 100644 --- a/akash-nodes/run-an-akash-node/step9-blockchain-snapshot-use.md +++ b/akash-nodes/run-an-akash-node/step9-blockchain-snapshot-use.md @@ -14,16 +14,16 @@ cd ~/.akash ### Download Snapshot -> NOTE - in the `Example Steps` provided below a specific snapshot version is used (`12992214`). In your use the current/latest snapshot version should be used. The latest Akash snapshot version - made available via Polkachu - can be found [here](https://polkachu.com/tendermint\_snapshots/akash). Replace all references to example snapshot version `12992214` with the current/latest version found on this site. +The latest Akash snapshot version - made available via The Offical Akash Network Snapshot - can be found [here](https://snapshots.akash.network/akashnet-2/akashnet-2_latest.tar.lz4). This snapshot is updated every hour. #### Example Steps ``` -wget -O akash_12992214.tar.lz4 https://snapshots.polkachu.com/snapshots/akash/akash_12992214.tar.lz4 --inet4-only +wget -O akashnet-2_latest.tar.lz4 https://snapshots.akash.network/akashnet-2/akashnet-2_latest.tar.lz4 --inet4-only apt-get install lz4 -lz4 -d akash_12992214.tar.lz4 +lz4 -d akashnet-2_latest.tar.lz4 -tar -xvf akash_12992214.tar +tar -xvf akashnet-2_latest.tar ```