Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bloxster committed Oct 11, 2024
1 parent 40ceb4d commit 5286283
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/basic/networks.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# Supported Networks


Utilize the flag `--chain=<tag>` to synchronize with one of the supported networks, for example:
The default flag is `--chain=mainnet`, which enables Erigon 3 to operate on the Ethereum mainnet.
Utilize the flag `--chain=<tag>` to synchronize with one of the supported networks, for example:

```bash
./build/bin/erigon --chain=holesky
```

The default flag is `--chain=mainnet`, which enables Erigon 3 to operate on the Ethereum mainnet.



# Mainnets
Expand Down
4 changes: 2 additions & 2 deletions src/basic/node.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The traditional Archive Node remains the default, providing complete historical
For users seeking a balance between storage efficiency and functionality, the Full Node option can be activated with the flag `--prune.mode=full`. For example:

```bash
./build/bin erigon --prune.mode=full
./build/bin/erigon --prune.mode=full
```

This setup maintains essential data while reducing storage requirements.
Expand All @@ -31,7 +31,7 @@ This setup maintains essential data while reducing storage requirements.
Erigon 3 implements support for [EIP-4444](https://eips.ethereum.org/EIPS/eip-4444) through its *Minimal Node configuration*, enabled by the flag `--prune.mode=minimal`. For example:

```bash
./build/bin erigon --prune.mode=minimal
./build/bin/erigon --prune.mode=minimal
```

This lightweight option aligns with the Ethereum Improvement Proposal's goal of reducing long-term storage burden on nodes, potentially improving network scalability and participation.

0 comments on commit 5286283

Please sign in to comment.