Skip to content

Commit

Permalink
Add sepolia integration snapshot to docs (#2071)
Browse files Browse the repository at this point in the history
  • Loading branch information
wojciechos authored Aug 19, 2024
1 parent 5855946 commit 946560b
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@ Use the provided snapshots to quickly sync your Juno node with the current state
| ------- | ------------- |
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.dev/files/sepolia/latest) |
## Sepolia-Integration
| Version | Download Link |
| ------- | ------------- |
| **>=v0.9.2** | [**juno_sepolia_integration.tar**](https://juno-snapshots.nethermind.dev/files/sepolia-integration/latest) |
### Getting the size for each snapshot
```console
$date
Expand All @@ -129,6 +135,9 @@ $curl -s -I -L https://juno-snapshots.nethermind.dev/files/mainnet/latest | gawk
$curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
5.67 GB
$curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia-integration/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
2.4 GB
```
### Run Juno Using Snapshot
Expand Down
9 changes: 9 additions & 0 deletions docs/docs/snapshots.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ You can download a snapshot of the Juno database to reduce the network syncing t
| ------- | ------------- |
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.dev/files/sepolia/latest) |

## Sepolia-Integration

| Version | Download Link |
| ------- | ------------- |
| **>=v0.9.2** | [**juno_sepolia_integration.tar**](https://juno-snapshots.nethermind.dev/files/sepolia-integration/latest) |

## Getting snapshot sizes

```console
Expand All @@ -29,6 +35,9 @@ $curl -s -I -L https://juno-snapshots.nethermind.dev/files/mainnet/latest | gawk

$curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
5.67 GB

$curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia-integration/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
2.4 GB
```

## Run Juno with a snapshot
Expand Down
9 changes: 9 additions & 0 deletions docs/versioned_docs/version-0.11.8/snapshots.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ You can download a snapshot of the Juno database to reduce the network syncing t
| ------- | ------------- |
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.dev/files/sepolia/latest) |

## Sepolia-Integration

| Version | Download Link |
| ------- | ------------- |
| **>=v0.9.2** | [**juno_sepolia_integration.tar**](https://juno-snapshots.nethermind.dev/files/sepolia-integration/latest) |

### Getting the size for each snapshot
```console
$date
Expand All @@ -28,6 +34,9 @@ $curl -s -I -L https://juno-snapshots.nethermind.dev/files/mainnet/latest | gawk

$curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
5.67 GB

$curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia-integration/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
2.4 GB
```

## Run Juno with a snapshot
Expand Down

0 comments on commit 946560b

Please sign in to comment.