-
Notifications
You must be signed in to change notification settings - Fork 447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
simulators/ethereum: add eest-engine/block-rlp for pectra devnet-3 #1162
Draft
spencer-tb
wants to merge
6
commits into
ethereum:master
Choose a base branch
from
spencer-tb:prague/devnet-3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
740186e
simulators/ethereum: add eest-engine/block-rlp for prague devnet 3.
spencer-tb 400e240
configs: update prague.
spencer-tb 4fb2fe4
clients/erigon/erigon.sh: comment out perf. opt. flag temp.
spencer-tb 63f5825
simulators: update to latest prague release.
spencer-tb 2124de7
simulators/ethereum: add initial eest-execute simulator.
spencer-tb 77a3fe5
temp reth check.
spencer-tb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -58,5 +58,6 @@ def to_bool: | |
"cancunTime": env.HIVE_CANCUN_TIMESTAMP|to_int, | ||
"pragueTime": env.HIVE_PRAGUE_TIMESTAMP|to_int, | ||
"terminalTotalDifficultyPassed": true, | ||
"depositContractAddress": "0x00000000219ab540356cBB839Cbe05303d7705Fa", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Required for geth. |
||
}|remove_empty | ||
} |
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
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 |
---|---|---|
|
@@ -359,7 +359,7 @@ function formatTestDetails(suiteData, row) { | |
|
||
if (d.description != '') { | ||
let p = document.createElement('p'); | ||
let description = html.urlsToLinks(html.encode(d.description.trim())); | ||
let description = html.urlsToLinks(d.description.trim()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Minor hiveview tweak as mentioned in the PR description. |
||
let txt = '<b>Description:</b><br/>' + description; | ||
p.innerHTML = txt; | ||
container.appendChild(p); | ||
|
This file was deleted.
Oops, something went wrong.
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,37 @@ | ||
- client: go-ethereum | ||
nametag: prague-devnet-3 | ||
dockerfile: git | ||
build_args: | ||
github: lightclient/go-ethereum | ||
tag: prague-devnet-3 | ||
|
||
- client: nethermind | ||
nametag: prague-devnet-3 | ||
build_args: | ||
baseimage: nethermindeth/nethermind | ||
tag: pectra | ||
|
||
- client: reth | ||
nametag: prague-devnet-3 | ||
dockerfile: git | ||
build_args: | ||
github: paradigmxyz/reth | ||
tag: onbjerg/devnet-3 | ||
|
||
- client: besu | ||
nametag: prague-devnet-3 | ||
build_args: | ||
baseimage: ethpandaops/besu | ||
tag: main | ||
|
||
- client: ethereumjs | ||
nametag: prague-devnet-3 | ||
build_args: | ||
github: ethereumjs/ethereumjs-monorepo | ||
tag: t8ntool | ||
|
||
- client: erigon | ||
nametag: prague-devnet-3 | ||
build_args: | ||
baseimage: thorax/erigon | ||
tag: docker_pectra |
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,17 @@ | ||
# Builds and runs the EEST (execution-spec-tests) consume rlp simulator | ||
FROM python:3.10-slim | ||
|
||
## Install dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y git wget tar && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
## Clone and install EEST | ||
RUN git clone https://github.com/ethereum/execution-spec-tests.git --depth 1 | ||
WORKDIR execution-spec-tests | ||
RUN pip install uv && uv sync | ||
|
||
## Define `consume rlp` entry point using the local fixtures | ||
ENTRYPOINT ["uv", "run", "consume", "rlp", "-v", "--input", "https://github.com/ethereum/execution-spec-tests/releases/download/pectra-devnet-3%40v1.5.0/fixtures_pectra-devnet-3.tar.gz"] | ||
|
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,16 @@ | ||
# Builds and runs the EEST (execution-spec-tests) consume engine simulator | ||
FROM python:3.10-slim | ||
|
||
## Install dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y git wget tar && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
## Clone and install EEST | ||
RUN git clone https://github.com/ethereum/execution-spec-tests.git --depth 1 | ||
WORKDIR execution-spec-tests | ||
RUN pip install uv && uv sync | ||
|
||
## Define `consume engine` entry point using the local fixtures | ||
ENTRYPOINT ["uv", "run", "consume", "engine", "-v", "--input", "https://github.com/ethereum/execution-spec-tests/releases/download/pectra-devnet-3%40v1.5.0/fixtures_pectra-devnet-3.tar.gz"] |
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,16 @@ | ||
# Builds and runs the EEST (execution-spec-tests) execute | ||
FROM python:3.10-slim | ||
|
||
## Install dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y git wget tar && \ | ||
apt-get clean && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
## Clone and install EEST | ||
RUN git clone -b fill-execute-modes-updates https://github.com/spencer-tb/execution-spec-tests.git | ||
WORKDIR execution-spec-tests | ||
RUN pip install uv && uv sync | ||
|
||
## Define `execute` entry point using python tests | ||
ENTRYPOINT ["uv", "run", "execute", "--hive-mode", "--fork", "Prague"] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Required for current erigon pectra branch. Can be added back in the future once updated in erigon.