Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update snapshot server links #321

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
```