From f43ee7e1ec78ac2c7cd78d0354f5a85b50efca86 Mon Sep 17 00:00:00 2001 From: William Law Date: Mon, 26 Jan 2026 15:41:58 -0500 Subject: [PATCH 1/3] feat: add pruned snapshot URL --- docs/base-chain/node-operators/snapshots.mdx | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/base-chain/node-operators/snapshots.mdx b/docs/base-chain/node-operators/snapshots.mdx index 5d9e3bfea..a6babe238 100644 --- a/docs/base-chain/node-operators/snapshots.mdx +++ b/docs/base-chain/node-operators/snapshots.mdx @@ -32,20 +32,23 @@ These steps assume you are in the cloned `node` directory (the one containing `d | Network | Client | Snapshot Type | Download Command (`wget …`) | | -------- | ------ | ------------- | ----------------------------------------------------------------------------------------------------------------- | | Testnet | Reth | Archive (recommended)| `wget https://sepolia-reth-archive-snapshots.base.org/$(curl https://sepolia-reth-archive-snapshots.base.org/latest)` | - | Testnet | Reth | Full | Coming Soon | + | Testnet | Reth | Pruned | `wget https://sepolia-reth-pruned-snapshots.base.org/$(curl https://sepolia-reth-pruned-snapshots.base.org/latest)` | | | Testnet | Geth | Full | `wget https://sepolia-full-snapshots.base.org/$(curl https://sepolia-full-snapshots.base.org/latest)` | | Mainnet | Reth | Archive (recommended)| `wget https://mainnet-reth-archive-snapshots.base.org/$(curl https://mainnet-reth-archive-snapshots.base.org/latest)` | - | Testnet | Reth | Full | Coming Soon | + | Testnet | Reth | Pruned | `wget https://mainnet-reth-pruned-snapshots.base.org/$(curl https://mainnet-reth-pruned-snapshots.base.org/latest)` | | | Mainnet | Geth | Full | `wget https://mainnet-full-snapshots.base.org/$(curl https://mainnet-full-snapshots.base.org/latest)` | - 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. + 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. -3. **Extract Snapshot**: Untar the downloaded snapshot archive. Replace `` with the actual downloaded filename: +3. **Extract Snapshot**: Untar the downloaded snapshot archive. Replace `snapshot-filename` with the actual downloaded filename: ```bash tar -xzvf + + # For .tar.zst + tar -I zstd -xvf ``` 4. **Move Data**: The extraction process will likely create a directory (e.g., `reth` or `geth`). From 7b5e86ed727a760db4466b4b335e2f09bbfaa8cd Mon Sep 17 00:00:00 2001 From: William Law Date: Mon, 26 Jan 2026 15:45:53 -0500 Subject: [PATCH 2/3] mainnet --- docs/base-chain/node-operators/snapshots.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/base-chain/node-operators/snapshots.mdx b/docs/base-chain/node-operators/snapshots.mdx index a6babe238..2106d38e9 100644 --- a/docs/base-chain/node-operators/snapshots.mdx +++ b/docs/base-chain/node-operators/snapshots.mdx @@ -35,7 +35,7 @@ These steps assume you are in the cloned `node` directory (the one containing `d | Testnet | Reth | Pruned | `wget https://sepolia-reth-pruned-snapshots.base.org/$(curl https://sepolia-reth-pruned-snapshots.base.org/latest)` | | | Testnet | Geth | Full | `wget https://sepolia-full-snapshots.base.org/$(curl https://sepolia-full-snapshots.base.org/latest)` | | Mainnet | Reth | Archive (recommended)| `wget https://mainnet-reth-archive-snapshots.base.org/$(curl https://mainnet-reth-archive-snapshots.base.org/latest)` | - | Testnet | Reth | Pruned | `wget https://mainnet-reth-pruned-snapshots.base.org/$(curl https://mainnet-reth-pruned-snapshots.base.org/latest)` | | + | Mainnet | Reth | Pruned | `wget https://mainnet-reth-pruned-snapshots.base.org/$(curl https://mainnet-reth-pruned-snapshots.base.org/latest)` | | | Mainnet | Geth | Full | `wget https://mainnet-full-snapshots.base.org/$(curl https://mainnet-full-snapshots.base.org/latest)` | From 9613ccbd701ab94168c04294f8cb4bf72e16846b Mon Sep 17 00:00:00 2001 From: William Law Date: Mon, 26 Jan 2026 16:59:16 -0500 Subject: [PATCH 3/3] add -c --- docs/base-chain/node-operators/snapshots.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/base-chain/node-operators/snapshots.mdx b/docs/base-chain/node-operators/snapshots.mdx index 2106d38e9..046e7560e 100644 --- a/docs/base-chain/node-operators/snapshots.mdx +++ b/docs/base-chain/node-operators/snapshots.mdx @@ -31,12 +31,12 @@ These steps assume you are in the cloned `node` directory (the one containing `d | Network | Client | Snapshot Type | Download Command (`wget …`) | | -------- | ------ | ------------- | ----------------------------------------------------------------------------------------------------------------- | - | Testnet | Reth | Archive (recommended)| `wget https://sepolia-reth-archive-snapshots.base.org/$(curl https://sepolia-reth-archive-snapshots.base.org/latest)` | - | Testnet | Reth | Pruned | `wget https://sepolia-reth-pruned-snapshots.base.org/$(curl https://sepolia-reth-pruned-snapshots.base.org/latest)` | | - | Testnet | Geth | Full | `wget https://sepolia-full-snapshots.base.org/$(curl https://sepolia-full-snapshots.base.org/latest)` | - | Mainnet | Reth | Archive (recommended)| `wget https://mainnet-reth-archive-snapshots.base.org/$(curl https://mainnet-reth-archive-snapshots.base.org/latest)` | - | Mainnet | Reth | Pruned | `wget https://mainnet-reth-pruned-snapshots.base.org/$(curl https://mainnet-reth-pruned-snapshots.base.org/latest)` | | - | Mainnet | Geth | Full | `wget https://mainnet-full-snapshots.base.org/$(curl https://mainnet-full-snapshots.base.org/latest)` | + | Testnet | Reth | Archive (recommended)| `wget -c https://sepolia-reth-archive-snapshots.base.org/$(curl https://sepolia-reth-archive-snapshots.base.org/latest)` | + | Testnet | Reth | Pruned | `wget -c https://sepolia-reth-pruned-snapshots.base.org/$(curl https://sepolia-reth-pruned-snapshots.base.org/latest)` | | + | Testnet | Geth | Full | `wget -c https://sepolia-full-snapshots.base.org/$(curl https://sepolia-full-snapshots.base.org/latest)` | + | Mainnet | Reth | Archive (recommended)| `wget -c https://mainnet-reth-archive-snapshots.base.org/$(curl https://mainnet-reth-archive-snapshots.base.org/latest)` | + | Mainnet | Reth | Pruned | `wget -c https://mainnet-reth-pruned-snapshots.base.org/$(curl https://mainnet-reth-pruned-snapshots.base.org/latest)` | | + | Mainnet | Geth | Full | `wget -c https://mainnet-full-snapshots.base.org/$(curl https://mainnet-full-snapshots.base.org/latest)` | 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.