Skip to content
This repository was archived by the owner on Dec 22, 2025. It is now read-only.

Commit f7309f7

Browse files
author
Bloxster
committed
small updates and typos
1 parent ed30499 commit f7309f7

File tree

9 files changed

+12
-13
lines changed

9 files changed

+12
-13
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
The Erigon 3 documentation © 2024 by Erigon contributors is licensed under CC BY 4.0.
1+
The Erigon 3 documentation © 2025 by Erigon contributors is licensed under CC BY 4.0.
22

33
To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/

src/advanced/JSONRPC-daemon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The RPC daemon is a crucial component of Erigon, enabling JSON remote procedure
99
This document provides guidelines for understanding and using the various RPC methods available in Erigon.
1010

1111
1. **Compatibility with `eth` namespace**
12-
- Erigon aims to be compatible with all standard Ethereum JSON-RPC API methods, as described [here](https://github.com/ethereum/execution-apis). See also [here](https://github.com/erigontech/erigon/blob/main/docs/readthedocs/source/rpc/index.rst) for examples.
12+
- Erigon aims to be compatible with all standard Ethereum JSON-RPC API methods, as described [here](https://ethereum.org/en/developers/docs/apis/json-rpc/). See also [here](https://github.com/erigontech/erigon/blob/main/docs/readthedocs/source/rpc/index.rst) for examples.
1313

1414
1. **Compatibility with standard Geth methods**
1515
- All methods featured by Geth including [WebSocket Server](https://geth.ethereum.org/docs/interacting-with-geth/rpc#websockets-server), [IPC Server](https://geth.ethereum.org/docs/interacting-with-geth/rpc#ipc-server), TLS, [GraphQL](https://geth.ethereum.org/docs/interacting-with-geth/rpc/graphql), etc..., are supported by Erigon.

src/advanced/bp-ext.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,3 @@ Other supported options are:
2222
- `--miner.recommit`: Time interval to recreate the block being mined (default: `3s`)
2323
- `--miner.gasprice`: This option sets the minimum gas price for mined transactions
2424
- `--miner.gastarget`: This option sets the maximum amount of gas that could be spent during a transaction.
25-
26-
Erigon supports [standard JSON-RPC methods](https://ethereum.org/en/developers/docs/apis/json-rpc/).

src/getting-started/sw-requirements.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ To install the latest Go version, visit the official documentation at [https://g
2929

3030
### C++ Compiler
3131

32-
This turns the C++ part of Erigon's code into a program your computer can run. You can use either **Clang** or **GCC**.
32+
This turns the C++ part of Erigon's code into a program your computer can run. You can use either **Clang** or **GCC**:
3333

34-
- For **Clang** follow the instructions at [https://clang.llvm.org/get_started.html](https://clang.llvm.org/get_started.html). Only in Linux, place your terminal to directory where you want to install Clang and copy-paste this code:
35-
- For **GCC** (version 10 or newer): [https://gcc.gnu.org/install/index.html](https://gcc.gnu.org/install/index.html)
34+
- For **Clang** follow the instructions at [https://clang.llvm.org/get_started.html](https://clang.llvm.org/get_started.html);
35+
- For **GCC** (version 10 or newer): [https://gcc.gnu.org/install/index.html](https://gcc.gnu.org/install/index.html).
3636

3737
You can now proceed with Erigon [installation](/installation.md).

src/installation/upgrading-md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ If you're using Docker to run Erigon, the process to upgrade to a newer version
9090

9191
* **Verify Operation**: Ensure that Erigon starts correctly and connects to the desired network, verifying the logs for any initial errors.
9292

93-
sBy following these steps, you'll keep your Docker setup clean and up-to-date with the latest Erigon version without needing to manually clean up or reconfigure your environment. Docker's ability to encapsulate software in containers simplifies upgrades and reduces conflicts with existing software on your machine.
93+
By following these steps, you'll keep your Docker setup clean and up-to-date with the latest Erigon version without needing to manually clean up or reconfigure your environment. Docker's ability to encapsulate software in containers simplifies upgrades and reduces conflicts with existing software on your machine.

src/nodes/ethereum.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ The basic command to run Erigon with Caplin on Ethereum mainnet is:
9797

9898
## Basic Configuration​
9999

100-
- If you want to store Erigon files in a non-default location, add flag `--datadir=<your_data_dir>`. Default data directory is `/home/usr/.local/share/`.erigon.
100+
- If you want to store Erigon files in a non-default location, add flag `--datadir=<your_data_dir>`. Default data directory is `/home/usr/.local/share/erigon`.
101101
- Erigon is full node by default, use `--prune.mode=archive` to run a archive node or `--prune.mode=minimal` (EIP-4444). If you want to change [type of node](/basic/node.md) delete the `--datadir` folder content and restart Erigon with the appropriate flags.
102102
- Default chain is `--chain=mainnet` for Ethereum mainnet:
103103
- add the flag `--chain=holesky` for Holesky testnet;

src/nodes/gnosis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ And an example of Lighthouse running Chiado testnet:
100100

101101
## Basic Configuration​
102102

103-
- If you want to store Erigon files in a non-default location, add flag `--datadir=<your_data_dir>`. Default data directory is `/home/usr/.local/share/`.erigon.
103+
- If you want to store Erigon files in a non-default location, add flag `--datadir=<your_data_dir>`. Default data directory is `/home/usr/.local/share/erigon`.
104104
- Erigon is full node by default, use `--prune.mode=archive` to run a archive node or `--prune.mode=minimal` (EIP-4444). If you want to change [type of node](/basic/node.md) delete the `--datadir` folder content and restart Erigon with the appropriate flags.
105105
- Add the flag `--chain=chiado` for Chiado testnet.
106106
- `--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 [wallet](/basic/wallet.md).

src/nodes/polygon.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ For a **Amoy testnet** archive node with remote Heimdall:
4949

5050
## Basic Configuration​
5151

52-
- If you want to store Erigon files in a non-default location, add flag `--datadir=<your_data_dir>`. Default data directory is `/home/usr/.local/share/`.erigon.
52+
- If you want to store Erigon files in a non-default location, add flag `--datadir=<your_data_dir>`. Default data directory is `/home/usr/.local/share/erigon`.
5353
- Erigon is full node by default, use `--prune.mode=archive` to run a archive node or `--prune.mode=minimal` (EIP-4444). If you want to change [type of node](/basic/node.md) delete the `--datadir` folder content and restart Erigon with the appropriate flags.
5454
- `--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 [wallet](/basic/wallet.md).
5555
- To increase download speed add `--torrent.download.rate=512mb` (default is 16mb)

src/staking.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44

55
Erigon is a comprehensive execution and consensus layer that also supports staking, aka block production, for Ethereum and Gnosis Chain. Both remote miners and Caplin are supported.
66

7-
- Using a [external consensus client](/advanced/bp-ext.md) as validator
8-
- Using [Caplin as validator](/advanced/bp-caplin.md)
7+
- Using a [external consensus client](/advanced/bp-ext.md) as validator;
8+
9+
- Using [Caplin as validator](/advanced/bp-caplin.md).

0 commit comments

Comments
 (0)