Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
docs: improved testnet snapshot intructions (#387)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmic-vagabond authored Jun 20, 2024
1 parent a92216a commit 379acfa
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,34 @@ This guide provides instructions on how to spin up a new localnet using the Elys

This command will install the `elysd` daemon.

3. **Download the Latest Snapshot**
3. **Download the Latest TestNet Snapshot**

Get the latest snapshot available for the Elys network by using the following command:
Get the latest TestNet snapshot available for the Elys network.

**Main branch**

Use the following command to download the latest TestNet snapshot that uses the changes from the `main` branch:

```bash
rm -rf ~/.elys && curl -o - -L https://snapshots.elys.network/elys-snapshot-main.tar.lz4 | lz4 -c -d - | tar -x -C ~/
```

**Devnet branch**

Use the following command to download the latest TestNet snapshot that uses the changes from the `devnet` branch:

```bash
rm -rf ~/.elys && curl -o - -L https://snapshots.elys.network/elys-snapshot-devnet.tar.lz4 | lz4 -c -d - | tar -x -C ~/
```

**Develop branch**

Use the following command to download the latest TestNet snapshot that uses the changes from the `develop` branch:

```bash
rm -rf ~/.elys && curl -o - -L https://snapshots.elys.network/elys-snapshot-develop.tar.lz4 | lz4 -c -d - | tar -x -C ~/
```

4. **Spin Up the Localnet**

Use the command below to start the localnet:
Expand Down

0 comments on commit 379acfa

Please sign in to comment.