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
Copy file name to clipboardExpand all lines: README.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ This project provides a modified version of Reth that includes:
16
16
17
17
### 1. Engine API Transaction Support
18
18
19
-
Unlike standard Reth, Lumen accepts transactions directly through the Engine API payload attributes. This allows Evolve to submit transactions when requesting new payload creation.
19
+
Unlike standard Reth, ev-reth accepts transactions directly through the Engine API payload attributes. This allows Evolve to submit transactions when requesting new payload creation.
20
20
21
21
### 2. Custom Payload Builder
22
22
@@ -36,7 +36,7 @@ Modified Engine API validator that:
36
36
37
37
### 4. Custom Consensus for Equal Timestamps
38
38
39
-
Lumen includes a custom consensus implementation (`RollkitConsensus`) that:
39
+
ev-reth includes a custom consensus implementation (`RollkitConsensus`) that:
40
40
41
41
- Allows multiple blocks to have the same timestamp
42
42
- Wraps the standard Ethereum beacon consensus for most validation
@@ -74,18 +74,18 @@ make test
74
74
75
75
## Usage
76
76
77
-
### Running the Lumen Node
77
+
### Running the ev-reth Node
78
78
79
79
Basic usage:
80
80
81
81
```bash
82
-
./target/release/lumen node
82
+
./target/release/ev-reth node
83
83
```
84
84
85
85
With custom configuration:
86
86
87
87
```bash
88
-
./target/release/lumen node \
88
+
./target/release/ev-reth node \
89
89
--chain <CHAIN_SPEC> \
90
90
--datadir <DATA_DIR> \
91
91
--http \
@@ -151,7 +151,7 @@ curl -X POST http://localhost:8545 \
151
151
152
152
### Modular Design
153
153
154
-
Lumen follows a modular architecture similar to Odyssey, with clear separation of concerns:
154
+
Ev-reth follows a modular architecture similar to Odyssey, with clear separation of concerns:
155
155
156
156
-**`bin/ev-reth`**: The main executable binary
157
157
-**`crates/common`**: Shared utilities and constants used across all crates
@@ -172,11 +172,11 @@ This modular design allows for:
172
172
- Handles payload construction with transactions from Engine API
0 commit comments