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
docs: replace 'prune modes' with 'pruning modes' (grammatical fix) (#21689)
Grammatical fix: "pruning modes" is more correct than "prune modes".
Applied across all existing documentation files. New documentation pages
already use the correct term.
Also renames `prune-modes.md` → `pruning-modes.md` and updates all
internal links to match.
---------
Co-authored-by: Bloxster <gianni.morselli@erigon.tech>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-authored-by: yperbasis <andrey.ashikhmin@gmail.com>
Copy file name to clipboardExpand all lines: docs/site/docs/fundamentals/basic-usage.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ To run Erigon with RPC Daemon, TxPool, and other components in a single process
92
92
```
93
93
* The `--chain=mainnet` flag is set by default for Erigon to sync with the Ethereum mainnet. To explore other network options, check the [Supported Networks](supported-networks) section. For quick testing, consider selecting a testnet.
94
94
*`--log.dir.path` dictates where [logs](logs) will be output - useful for sending reports to the Erigon team when issues occur.
95
-
* Based on the [prune mode](prune-modes) you want to run you can add `--prune.mode=archive` to run an archive node, `--prune.mode=full` for a full node (default value) or `--prune.mode=minimal` for a minimal node.
95
+
* Based on the [pruning mode](pruning-modes) you want to run you can add `--prune.mode=archive` to run an archive node, `--prune.mode=full` for a full node (default value) or `--prune.mode=minimal` for a minimal node.
96
96
*`--http.addr=0.0.0.0 --http.api=eth,web3,net,debug,trace,txpool` to use [RPC Service](../interacting-with-erigon/) and e.g. be able to connect your [wallet](web3-wallet).
97
97
*`--torrent.download.rate` sets the torrent download rate cap. The default is `512mb` (megabytes per second). During initial sync Erigon will use the full allowance — on a dedicated machine this is fine, but if you share the machine with other work you may want to lower it (e.g. `--torrent.download.rate=128mb`). Set `--torrent.download.rate=Inf` to remove the limit entirely.
Copy file name to clipboardExpand all lines: docs/site/docs/fundamentals/database.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@ snapshots TOTAL 2.3 TB
77
77
78
78
The breakdown above lists the state/history snapshot subdirectories. The remaining ~1.2 TB is mostly block/transaction `.seg` data, which is not broken out separately here.
79
79
80
-
For up-to-date totals across all networks and prune modes, see [Hardware Requirements](../get-started/hardware-requirements).
80
+
For up-to-date totals across all networks and pruning modes, see [Hardware Requirements](../get-started/hardware-requirements).
81
81
82
82
## Why `chaindata/` stays so small
83
83
@@ -115,4 +115,4 @@ If you need to reclaim space without resyncing from scratch:
115
115
-[Architecture](architecture) — how this storage model fits into staged sync and the flat-KV state design
116
116
-[Optimizing Storage](optimizing-storage) — concrete recipes for splitting the datadir across multiple disks
117
117
-[Hardware Requirements](../get-started/hardware-requirements) — disk-size numbers for each `--prune.mode`
118
-
-[Prune Modes](prune-modes) — choosing what history to keep
118
+
-[Pruning Modes](pruning-modes) — choosing what history to keep
Copy file name to clipboardExpand all lines: docs/site/docs/fundamentals/pruning-modes.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,15 +1,15 @@
1
1
---
2
-
title: "Prune Modes"
3
-
description: "Full, minimal, blocks, and archive prune modes explained — choose the right mode for your use case."
2
+
title: "Pruning Modes"
3
+
description: "Full, minimal, blocks, and archive pruning modes explained — choose the right mode for your use case."
4
4
sidebar_position: 2
5
5
---
6
6
7
7
8
-
# Prune Modes
8
+
# Pruning Modes
9
9
10
-
Erigon 3 supports four prune modes that control how much chain history your node retains. Choose based on your use case — most users should run a Full Node.
10
+
Erigon 3 supports four pruning modes that control how much chain history your node retains. Choose based on your use case — most users should run a Full Node.
11
11
12
-
|**Prune Mode**|**Flag**|**Data Retained**|**Primary Use Case**|
12
+
|**Pruning Mode**|**Flag**|**Data Retained**|**Primary Use Case**|
| <p>* <ahref="#full-node">Full Node</a><br />(Default)</p> |`--prune.mode=full`| State and block data within the EIP-8252 window (last 262,144 blocks, ~36 days) | General users, DApp interaction, fastest sync. |
15
15
|\*[Minimal Node](#minimal-node)|`--prune.mode=minimal`| State and block data within the last 100,000 blocks (~14 days) | Solo staking, users with constrained hardware, maximum privacy for sending transactions. |
Copy file name to clipboardExpand all lines: docs/site/docs/get-started/easy-nodes/how-to-run-a-gnosis-chain-node/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ sidebar_position: 2
9
9
10
10
## 1. Prerequisites Check
11
11
12
-
1. Confirm your machine meets the necessary [Hardware Requirements](/get-started/hardware-requirements) based on your desired prune mode.
12
+
1. Confirm your machine meets the necessary [Hardware Requirements](/get-started/hardware-requirements) based on your desired pruning mode.
13
13
2.**Install Docker**:
14
14
* For Linux, install [Docker Engine](https://docs.docker.com/engine/install).
15
15
* For macOS or Windows, install [Docker Desktop](https://docs.docker.com/desktop/).
@@ -35,8 +35,8 @@ services:
35
35
- --http.api=eth,web3,net,debug,trace,txpool
36
36
# --- Performance Tweaks ---
37
37
- --torrent.download.rate=512mb
38
-
# --- Prune Mode (Optional) ---
39
-
# To change Prune Mode, uncomment the line below:
38
+
# --- Pruning Mode (Optional) ---
39
+
# To change Pruning Mode, uncomment the line below:
40
40
# - --prune.mode=archive
41
41
# or
42
42
# - --prune.mode=minimal
@@ -64,7 +64,7 @@ docker compose up
64
64
## Flag explanation
65
65
66
66
*`--chain=gnosis` specifies to run on Gnosis Chain, use `--chain=chiado` for Chiado testnet
67
-
* Add `--prune.mode=minimal` to run minimal [Prune Mode](/fundamentals/prune-modes) or `--prune.mode=archive` to run an archive node
67
+
* Add `--prune.mode=minimal` to run minimal [Pruning Mode](/fundamentals/pruning-modes) or `--prune.mode=archive` to run an archive node
68
68
*`--http.addr="0.0.0.0" --http.api=eth,web3,net,debug,trace,txpool` to use RPC and e.g. be able to connect your [web3 wallet](/fundamentals/web3-wallet)
69
69
*`--torrent.download.rate=512mb` to increase download speed. While the default downloading speed is 128mb, with this flag Erigon will use as much download speed as it can, up to a maximum of 512 megabytes per second. This means it will try to download data as quickly as possible, but it won't exceed the 512 MB/s limit you've set
Copy file name to clipboardExpand all lines: docs/site/docs/get-started/easy-nodes/how-to-run-a-polygon-node.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ sidebar_position: 3
13
13
14
14
## 1. Prerequisites Check
15
15
16
-
1. Confirm your machine meets the necessary [Hardware Requirements](../hardware-requirements) based on your desired prune mode.
16
+
1. Confirm your machine meets the necessary [Hardware Requirements](../hardware-requirements) based on your desired pruning mode.
17
17
2.**Install Docker**:
18
18
* For Linux, install [Docker Engine](https://docs.docker.com/engine/install).
19
19
* For macOS or Windows, install [Docker Desktop](https://docs.docker.com/desktop/).
@@ -40,8 +40,8 @@ services:
40
40
- --http.api=eth,web3,net,debug,trace,txpool
41
41
# --- Performance Tweaks ---
42
42
- --torrent.download.rate=512mb
43
-
# --- Prune Mode (Optional) ---
44
-
# To change Prune Mode, uncomment the line below:
43
+
# --- Pruning Mode (Optional) ---
44
+
# To change Pruning Mode, uncomment the line below:
45
45
# - --prune.mode=archive
46
46
# or
47
47
# - --prune.mode=minimal
@@ -72,7 +72,7 @@ Now you can relax and watch your Erigon Polygon node sync!
72
72
73
73
*`--chain=bor-mainnet` and `--bor.heimdall=https://heimdall-api.polygon.technologyspecifies` specify respectively the Polygon mainnet and the API endpoint for the Heimdall network
74
74
* to use Amoy tesnet replace with flags `--chain=amoy --bor.heimdall=https://heimdall-api-amoy.polygon.technology`
75
-
* Add `--prune.mode=minimal` to run minimal [Prune Mode](../../fundamentals/prune-modes) or `--prune.mode=archive` to run an archive node
75
+
* Add `--prune.mode=minimal` to run minimal [Pruning Mode](../../fundamentals/pruning-modes) or `--prune.mode=archive` to run an archive node
76
76
*`--http.addr="0.0.0.0" --http.api=eth,web3,net,debug,trace,txpool` to use RPC and e.g. be able to connect your [web3 wallet](../../fundamentals/web3-wallet);
77
77
*`--torrent.download.rate=512mb` to increase download speed. While the default downloading speed is 128mb, with this flag Erigon will use as much download speed as it can, up to a maximum of 512 megabytes per second. This means it will try to download data as quickly as possible, but it won't exceed the 512 MB/s limit you've set.
Copy file name to clipboardExpand all lines: docs/site/docs/get-started/easy-nodes/how-to-run-an-ethereum-node/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ sidebar_position: 1
9
9
10
10
## 1. Prerequisites Check
11
11
12
-
1. Confirm your machine meets the necessary [Hardware Requirements](/get-started/hardware-requirements) based on your desired prune mode.
12
+
1. Confirm your machine meets the necessary [Hardware Requirements](/get-started/hardware-requirements) based on your desired pruning mode.
13
13
2.**Install Docker**:
14
14
* For Linux, install [Docker Engine](https://docs.docker.com/engine/install).
15
15
* For macOS or Windows, install [Docker Desktop](https://docs.docker.com/desktop/).
@@ -35,8 +35,8 @@ services:
35
35
- --http.api=eth,web3,net,debug,trace,txpool
36
36
# --- Performance Tweaks ---
37
37
- --torrent.download.rate=512mb
38
-
# --- Prune Mode (Optional) ---
39
-
# To change Prune Mode, uncomment the line below:
38
+
# --- Pruning Mode (Optional) ---
39
+
# To change Pruning Mode, uncomment the line below:
40
40
# - --prune.mode=archive
41
41
# or
42
42
# - --prune.mode=minimal
@@ -64,7 +64,7 @@ docker compose up
64
64
## Flag explanation
65
65
66
66
*`--chain=mainnet` specifies to run on Ethereum mainnet
67
-
* Add `--prune.mode=minimal` to run minimal [Prune Mode](/fundamentals/prune-modes) or `--prune.mode=archive` to run an archive node
67
+
* Add `--prune.mode=minimal` to run minimal [Pruning Mode](/fundamentals/pruning-modes) or `--prune.mode=archive` to run an archive node
68
68
*`--http.addr=0.0.0.0 --http.api=eth,web3,net,debug,trace,txpool` to use RPC and e.g. be able to connect your [web3 wallet](/fundamentals/web3-wallet)
69
69
*`--torrent.download.rate` sets the torrent download rate cap. The default is `512mb` (megabytes per second). During initial sync Erigon will use the full allowance — on a dedicated machine this is fine, but if you share the machine with other work you may want to lower it (e.g. `--torrent.download.rate=128mb`). Set `--torrent.download.rate=Inf` to remove the limit entirely.
Copy file name to clipboardExpand all lines: docs/site/docs/get-started/hardware-requirements.mdx
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,19 +25,19 @@ A locally mounted **SSD** (Solid-State Drive) or **NVMe** (Non-Volatile Memory E
25
25
26
26
## Disk Size and RAM Requirements
27
27
28
-
The amount of disk space recommended and RAM you need depends on the [prune mode](../fundamentals/prune-modes) you want to run. **Current Disk Usage** values listed below are obtained using the standard Erigon + [Caplin](../fundamentals/caplin) configuration, with the sole exception of the `--prune.mode` flag.
28
+
The amount of disk space recommended and RAM you need depends on the [pruning mode](../fundamentals/pruning-modes) you want to run. **Current Disk Usage** values listed below are obtained using the standard Erigon + [Caplin](../fundamentals/caplin) configuration, with the sole exception of the `--prune.mode` flag.
@@ -48,7 +48,7 @@ The amount of disk space recommended and RAM you need depends on the [prune mode
48
48
The final release series of Erigon that officially supports Polygon is 3.1.\*. For the software supported by Polygon, please refer to the link: [https://github.com/0xPolygon/erigon/releases](https://github.com/0xPolygon/erigon/releases). Disk usage figures below are from September 2025 and are no longer automatically updated.
49
49
:::
50
50
51
-
|**Prune Mode**|**Current Disk Usage**|**Disk Size (Recommended)**|**RAM (Required)**|**RAM (Recommended)**|
51
+
|**Pruning Mode**|**Current Disk Usage**|**Disk Size (Recommended)**|**RAM (Required)**|**RAM (Recommended)**|
0 commit comments