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

Commit c2bedb9

Browse files
author
Bloxster
committed
updates
1 parent e2f165d commit c2bedb9

File tree

8 files changed

+26
-20
lines changed

8 files changed

+26
-20
lines changed

book.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,7 @@ description = "Erigon 3 documentation!"
55
language = "en"
66
multilingual = false
77
src = "src"
8+
9+
[output.html]
10+
git-repository-url = "https://github.com/erigontech/docs"
11+
edit-url-template = "https://github.com/rust-lang/mdBook/edit/master/guide/{path}"

src/SUMMARY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@
3636
- [Lighthouse](advanced/lighthouse.md)
3737
- [JWT secret](advanced/jwt.md)
3838
- [Options](advanced/options.md)
39-
- [RPC Daemon](advanced/rpc_daemon.md)
39+
- [RPC Daemon](advanced/JSONRPC-daemon.md)
4040
- [TxPool](advanced/txpool.md)
4141
- [Sentry](advanced/sentry.md)
4242
- [Downloader](advanced/downloader.md)
43-
- [Running an Op-node](op-node.md)
43+
- [Running an Op-node](advanced/op-node.md)
4444
- [TLS Authentication](advanced/tls-authentication.md)
4545
- [Perfomance Tricks](advanced/performance.md)
4646

src/about/contributing.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Erigon is an open-source project that welcomes contributions from developers wor
66

77
### Programmer's Guide
88

9-
Begin by exploring the comprehensive [Programmer's Guide](https://github.com/ledgerwatch/erigon/blob/devel/docs/programmers_guide/guide.md), which covers topics such as the Ethereum state structure, account contents, and account addressing mechanisms. This guide serves as a valuable resource, providing detailed information on Erigon's architecture, coding conventions, and development workflows related to managing and interacting with the Ethereum state.
9+
Begin by exploring the comprehensive **[Programmer's Guide](https://github.com/ledgerwatch/erigon/blob/devel/docs/programmers_guide/guide.md)**, which covers topics such as the Ethereum state structure, account contents, and account addressing mechanisms. This guide serves as a valuable resource, providing detailed information on Erigon's architecture, coding conventions, and development workflows related to managing and interacting with the Ethereum state.
1010

1111
### Dive Deeper into the Architecture
1212

@@ -22,7 +22,7 @@ Erigon introduces several innovative features that contributors may find interes
2222

2323
## Wiki
2424

25-
Visit also Erigon's [Wiki](https://github.com/ledgerwatch/erigon/wiki) to gain more important insights:
25+
Visit also Erigon's **[Wiki](https://github.com/ledgerwatch/erigon/wiki)** to gain more important insights:
2626
- Caplin downloader sync
2727
- Choice of storage engine
2828
- Consensus Engine separation
@@ -40,4 +40,4 @@ Visit also Erigon's [Wiki](https://github.com/ledgerwatch/erigon/wiki) to gain m
4040

4141
# Documentation
4242

43-
To contribute to this documentation, commit your change to the development branch on [Github](https://github.com/erigontech/docs/tree/development). You might want to run it locally to verify the output before committing, see how MdBook works [here](https://rust-lang.github.io/mdBook/index.html).
43+
To contribute to this documentation, commit your change to the development branch on **[Github](https://github.com/erigontech/docs/tree/development)**. You might want to run it locally to verify the output before committing, see how MdBook works [here](https://rust-lang.github.io/mdBook/index.html).

src/about/license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# License
22

3-
The Erigon 3 documentation © 2024 by Erigon contributors is licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
3+
The Erigon 3 Book © 2024 by Erigon contributors is licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/).
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
12
# RPC Daemon
23
*Remote Procedure Call*
34

src/advanced/op-node.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Running an Op-Node Alongside Erigon
2+
3+
To run an op-node alongside Erigon, follow these steps:
4+
5+
1. **Start Erigon with Caplin Enabled**:
6+
If Caplin is running as the consensus layer (CL), use the `--caplin.blobs-immediate-backfill` flag to ensure the last 18 days of blobs are backfilled, which is critical for proper synchronization with the op-node, assuming you start from a snapshot.
7+
```bash
8+
./build/bin/erigon --caplin.blobs-immediate-backfill
9+
```
10+
2. **Run the Op-Node**:
11+
Configure the op-node with the `--l1.trustrpc` flag to trust the Erigon RPC layer as the L1 node. This setup ensures smooth communication and synchronization.
12+
13+
This configuration enables the op-node to function effectively with Erigon serving as both the L1 node and the CL.

src/op-node.md

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1 @@
1-
# Running an Op-Node Alongside Erigon
2-
3-
To run an op-node alongside Erigon, follow these steps:
4-
5-
1. **Start Erigon with Caplin Enabled**:
6-
If Caplin is running as the consensus layer (CL), use the `--caplin.blobs-immediate-backfill` flag to ensure the last 18 days of blobs are backfilled, which is critical for proper synchronization with the op-node, assuming you start from a snapshot.
7-
```bash
8-
./build/bin/erigon --caplin.blobs-immediate-backfill
9-
```
10-
2. **Run the Op-Node**:
11-
Configure the op-node with the `--l1.trustrpc` flag to trust the Erigon RPC layer as the L1 node. This setup ensures smooth communication and synchronization.
12-
13-
This configuration enables the op-node to function effectively with Erigon serving as both the L1 node and the CL.
1+
# Running an Op-node

src/welcome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Erigon 3 also introduces changes to the release process, including:
5050

5151
# Known Issues
5252

53-
See <https://github.com/erigontech/erigon?tab=readme-ov-file#known-issues>.
53+
See <https://github.com/erigontech/erigon?tab=readme-ov-file#known-issues>
5454

5555
# Contributing to this documentation
5656

0 commit comments

Comments
 (0)