Skip to content

Commit 60e8cc9

Browse files
authored
Update download link for Juno snapshots from dev to io in Readme file (#2314)
1 parent 8862de1 commit 60e8cc9

File tree

7 files changed

+37
-37
lines changed

7 files changed

+37
-37
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -112,32 +112,32 @@ Use the provided snapshots to quickly sync your Juno node with the current state
112112
113113
| Version | Download Link |
114114
| ------- | ------------- |
115-
| **>=v0.9.2** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.dev/files/mainnet/latest) |
115+
| **>=v0.9.2** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.io/files/mainnet/latest) |
116116
117117
#### Sepolia
118118
119119
| Version | Download Link |
120120
| ------- | ------------- |
121-
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.dev/files/sepolia/latest) |
121+
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.io/files/sepolia/latest) |
122122
123123
#### Sepolia-Integration
124124
125125
| Version | Download Link |
126126
| ------- | ------------- |
127-
| **>=v0.9.2** | [**juno_sepolia_integration.tar**](https://juno-snapshots.nethermind.dev/files/sepolia-integration/latest) |
127+
| **>=v0.9.2** | [**juno_sepolia_integration.tar**](https://juno-snapshots.nethermind.io/files/sepolia-integration/latest) |
128128
129129
### Getting the size for each snapshot
130130
```console
131131
$date
132132
Thu 1 Aug 2024 09:49:30 BST
133133
134-
$curl -s -I -L https://juno-snapshots.nethermind.dev/files/mainnet/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
134+
$curl -s -I -L https://juno-snapshots.nethermind.io/files/mainnet/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
135135
172.47 GB
136136
137-
$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 }'
137+
$curl -s -I -L https://juno-snapshots.nethermind.io/files/sepolia/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
138138
5.67 GB
139139
140-
$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 }'
140+
$curl -s -I -L https://juno-snapshots.nethermind.io/files/sepolia-integration/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
141141
2.4 GB
142142
```
143143
@@ -148,7 +148,7 @@ $curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia-integration/l
148148
Fetch the snapshot from the provided URL:
149149
150150
```bash
151-
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.dev/files/mainnet/latest
151+
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.io/files/mainnet/latest
152152
```
153153
154154
2. **Prepare Directory**

docs/docs/snapshots.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,33 @@ You can download a snapshot of the Juno database to reduce the network syncing t
1010

1111
| Version | Download Link |
1212
| ------- | ------------- |
13-
| **>=v0.9.2** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.dev/files/mainnet/latest) |
13+
| **>=v0.9.2** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.io/files/mainnet/latest) |
1414

1515
## Sepolia
1616

1717
| Version | Download Link |
1818
| ------- | ------------- |
19-
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.dev/files/sepolia/latest) |
19+
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.io/files/sepolia/latest) |
2020

2121
## Sepolia-Integration
2222

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

2727
## Getting snapshot sizes
2828

2929
```console
3030
$date
3131
Thu 1 Aug 2024 09:49:30 BST
3232

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

36-
$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 }'
36+
$curl -s -I -L https://juno-snapshots.nethermind.io/files/sepolia/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
3737
5.67 GB
3838

39-
$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 }'
39+
$curl -s -I -L https://juno-snapshots.nethermind.io/files/sepolia-integration/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
4040
2.4 GB
4141
```
4242

@@ -47,7 +47,7 @@ $curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia-integration/l
4747
First, download a snapshot from one of the provided URLs:
4848

4949
```bash
50-
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.dev/files/mainnet/latest
50+
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.io/files/mainnet/latest
5151
```
5252

5353
### 2. Prepare a directory

docs/versioned_docs/version-0.11.0/snapshots.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ After downloading a snapshot and starting a Juno node, only recent blocks must b
1111

1212
| Version | Size | Block | Download Link |
1313
| ------- | ---- | ----- | ------------- |
14-
| **>=v0.9.2** | **182 GB** | **640855** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.dev/mainnet/juno_mainnet_v0.11.7_640855.tar) |
14+
| **>=v0.9.2** | **182 GB** | **640855** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.io/mainnet/juno_mainnet_v0.11.7_640855.tar) |
1515

1616

1717
## Sepolia
1818

1919
| Version | Size | Block | Download Link |
2020
| ------- | ---- | ----- | ------------- |
21-
| **>=v0.9.2** | **5 GB** | **66477** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.dev/sepolia/juno_sepolia_v0.11.7_66477.tar) |
21+
| **>=v0.9.2** | **5 GB** | **66477** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.io/sepolia/juno_sepolia_v0.11.7_66477.tar) |
2222

2323
## Run Juno Using Snapshot
2424

@@ -27,7 +27,7 @@ After downloading a snapshot and starting a Juno node, only recent blocks must b
2727
Fetch a snapshot from one of the provided URLs:
2828

2929
```bash
30-
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.dev/mainnet/juno_mainnet_v0.11.7_640855.tar
30+
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.io/mainnet/juno_mainnet_v0.11.7_640855.tar
3131
```
3232

3333
2. **Prepare Directory**

docs/versioned_docs/version-0.11.8/snapshots.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,32 @@ You can download a snapshot of the Juno database to reduce the network syncing t
1010

1111
| Version | Download Link |
1212
| ------- | ------------- |
13-
| **>=v0.9.2** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.dev/files/mainnet/latest) |
13+
| **>=v0.9.2** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.io/files/mainnet/latest) |
1414

1515
## Sepolia
1616

1717
| Version | Download Link |
1818
| ------- | ------------- |
19-
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.dev/files/sepolia/latest) |
19+
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.io/files/sepolia/latest) |
2020

2121
## Sepolia-Integration
2222

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

2727
### Getting the size for each snapshot
2828
```console
2929
$date
3030
Thu 1 Aug 2024 09:49:30 BST
3131

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

35-
$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 }'
35+
$curl -s -I -L https://juno-snapshots.nethermind.io/files/sepolia/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
3636
5.67 GB
3737

38-
$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 }'
38+
$curl -s -I -L https://juno-snapshots.nethermind.io/files/sepolia-integration/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
3939
2.4 GB
4040
```
4141

@@ -46,7 +46,7 @@ $curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia-integration/l
4646
First, download a snapshot from one of the provided URLs:
4747

4848
```bash
49-
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.dev/files/mainnet/latest
49+
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.io/files/mainnet/latest
5050
```
5151

5252
### 2. Prepare a directory

docs/versioned_docs/version-0.12.4/snapshots.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -10,33 +10,33 @@ You can download a snapshot of the Juno database to reduce the network syncing t
1010

1111
| Version | Download Link |
1212
| ------- | ------------- |
13-
| **>=v0.9.2** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.dev/files/mainnet/latest) |
13+
| **>=v0.9.2** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.io/files/mainnet/latest) |
1414

1515
## Sepolia
1616

1717
| Version | Download Link |
1818
| ------- | ------------- |
19-
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.dev/files/sepolia/latest) |
19+
| **>=v0.9.2** | [**juno_sepolia.tar**](https://juno-snapshots.nethermind.io/files/sepolia/latest) |
2020

2121
## Sepolia-Integration
2222

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

2727
## Getting snapshot sizes
2828

2929
```console
3030
$date
3131
Thu 1 Aug 2024 09:49:30 BST
3232

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

36-
$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 }'
36+
$curl -s -I -L https://juno-snapshots.nethermind.io/files/sepolia/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
3737
5.67 GB
3838

39-
$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 }'
39+
$curl -s -I -L https://juno-snapshots.nethermind.io/files/sepolia-integration/latest | gawk -v IGNORECASE=1 '/^Content-Length/ { printf "%.2f GB\n", $2/1024/1024/1024 }'
4040
2.4 GB
4141
```
4242

@@ -47,7 +47,7 @@ $curl -s -I -L https://juno-snapshots.nethermind.dev/files/sepolia-integration/l
4747
First, download a snapshot from one of the provided URLs:
4848

4949
```bash
50-
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.dev/files/mainnet/latest
50+
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.io/files/mainnet/latest
5151
```
5252

5353
### 2. Prepare a directory

docs/versioned_docs/version-0.8.0/snapshots.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ After downloading a snapshot and starting a Juno node, only recent blocks must b
1111

1212
| Version | Size | Block | Download Link |
1313
| ------- | ---- | ----- | ------------- |
14-
| **>=v0.6.0** | **121 GB** | **449406** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.dev/mainnet/juno_mainnet_v0.7.5_449406.tar) |
14+
| **>=v0.6.0** | **121 GB** | **449406** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.io/mainnet/juno_mainnet_v0.7.5_449406.tar) |
1515

1616
## Goerli
1717

1818
| Version | Size | Block | Download Link |
1919
| ------- | ---- | ----- | ------------- |
20-
| **>=v0.6.0** | **41.4 GB** | **911580** | [**juno_goerli.tar**](https://juno-snapshots.nethermind.dev/goerli/juno_goerli_v0.7.5_911580.tar) |
20+
| **>=v0.6.0** | **41.4 GB** | **911580** | [**juno_goerli.tar**](https://juno-snapshots.nethermind.io/goerli/juno_goerli_v0.7.5_911580.tar) |
2121

2222
## Run Juno Using Snapshot
2323

@@ -26,7 +26,7 @@ After downloading a snapshot and starting a Juno node, only recent blocks must b
2626
Fetch a snapshot from one of the provided URLs:
2727

2828
```bash
29-
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.dev/mainnet/juno_mainnet_v0.7.5_449406.tar
29+
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.io/mainnet/juno_mainnet_v0.7.5_449406.tar
3030
```
3131

3232
2. **Prepare Directory**

docs/versioned_docs/version-0.9.3/snapshots.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ After downloading a snapshot and starting a Juno node, only recent blocks must b
1111

1212
| Version | Size | Block | Download Link |
1313
| ------- | ---- | ----- | ------------- |
14-
| **>=v0.9.2** | **156 GB** | **519634** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.dev/mainnet/juno_mainnet_v0.9.3_519634.tar) |
14+
| **>=v0.9.2** | **156 GB** | **519634** | [**juno_mainnet.tar**](https://juno-snapshots.nethermind.io/mainnet/juno_mainnet_v0.9.3_519634.tar) |
1515

1616
## Goerli
1717

1818
| Version | Size | Block | Download Link |
1919
| ------- | ---- | ----- | ------------- |
20-
| **>=v0.6.0** | **41.4 GB** | **911580** | [**juno_goerli.tar**](https://juno-snapshots.nethermind.dev/goerli/juno_goerli_v0.7.5_911580.tar) |
20+
| **>=v0.6.0** | **41.4 GB** | **911580** | [**juno_goerli.tar**](https://juno-snapshots.nethermind.io/goerli/juno_goerli_v0.7.5_911580.tar) |
2121

2222
## Run Juno Using Snapshot
2323

@@ -26,7 +26,7 @@ After downloading a snapshot and starting a Juno node, only recent blocks must b
2626
Fetch a snapshot from one of the provided URLs:
2727

2828
```bash
29-
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.dev/mainnet/juno_mainnet_v0.9.3_519634.tar
29+
wget -O juno_mainnet.tar https://juno-snapshots.nethermind.io/mainnet/juno_mainnet_v0.9.3_519634.tar
3030
```
3131

3232
2. **Prepare Directory**

0 commit comments

Comments
 (0)