You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Mainnet | Geth | Full |`wget -c https://mainnet-full-snapshots.base.org/$(curl https://mainnet-full-snapshots.base.org/latest)`|
40
40
41
41
<Note>
42
-
Ensure you have enough free disk space to download the snapshot archive (`.tar.gz` file) _and_ extract its contents. The extracted data will be significantly larger than the archive.
42
+
Ensure you have enough free disk space to download the snapshot archive (`.tar.gz`/ `.tar.zst`file) _and_ extract its contents. The extracted data will be significantly larger than the archive.
43
43
</Note>
44
44
45
-
3.**Extract Snapshot**: Untar the downloaded snapshot archive. Replace `<snapshot-filename.tar.gz>` with the actual downloaded filename:
45
+
3.**Extract Snapshot**: Untar the downloaded snapshot archive. Replace `snapshot-filename` with the actual downloaded filename:
46
46
47
47
```bash
48
48
tar -xzvf <snapshot-filename.tar.gz>
49
+
50
+
# For .tar.zst
51
+
tar -I zstd -xvf <snapshot-filename.tar.zst>
49
52
```
50
53
51
54
4.**Move Data**: The extraction process will likely create a directory (e.g., `reth` or `geth`).
0 commit comments