-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Reth based Block Validator Api | ||
Reth rpc extension to add an endpoint for validation of builder submissions as received by a relay. | ||
|
||
## Get Started | ||
Run extended reth full node with the added rpc endpoint with: | ||
`RUST_LOG=info cargo run -- node --full --metrics 127.0.0.1:9001 --http --enable-ext` | ||
|
||
## Test it | ||
While there are no automated tests yet you can execute a manual test using the provided testdata: | ||
`curl --location 'localhost:8545/' --header 'Content-Type: application/json' --data @test/data/rpc_payload.json` | ||
|
||
|