-
Notifications
You must be signed in to change notification settings - Fork 352
chore: remove hardcoded fork reference osaka and fetch latest fork #1337
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
Open
Dyslex7c
wants to merge
38
commits into
ethereum:forks/osaka
Choose a base branch
from
Dyslex7c:tox/remove-hardcoded-fork-osaka
base: forks/osaka
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.
Open
Changes from 37 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
1f5b621
Initial Osaka commit
SamWilsn 268f67f
Implement EIP-7823
gurukamath 7f4fc84
Implement EIP-7825
gurukamath 0af9e4e
Implement EIP-7883
gurukamath 30b1cd2
Implement EIP-7918
gurukamath ba4c566
Eip 7918 changes (#1273)
Carsons-Eels 9f9bdb7
run osaka tests (#1290)
gurukamath 0a1eebf
chore(osaka): update modexp eip-7883.
spencer-tb c47b68f
feat(osaka): add eip-7939 count leading zeros opcode (#1275)
spencer-tb 96fed55
Implement EIP-7934 (#1289)
gurukamath f069e08
Implement EIP-7907
gurukamath 4708376
introduce warm_code_addresses
gurukamath 275d66a
feat: implement eip-7951
LouisTsai-Csie 54aa418
Code review feedback
SamWilsn 1d290e8
Bump version to 2.18.0rc2.dev1
SamWilsn 0aa92a0
Grab latest EEST
SamWilsn f947ab1
Bump version to 2.18.0rc2
SamWilsn afdd3b7
Enhance account creation handling to respect EIP-6780 constraints in …
tomaswoj-eth 9a5a6a8
Update docs to mention EIP-6780 (prague,osaka)
SamWilsn 5614686
Make workflows agnostic to default branch name
SamWilsn bcee9d9
Changed to_address to to_address_masked
Antrikshgwal bfa4b14
improve readability of calculations
vedant-asati d12896a
fix: update EIP-7610 link to official EIP page
eeemmmmmm e6108ed
Refactor transaction validation to use MAX_INIT_CODE_SIZE instead of …
timsburk 7b1694e
add specific exceptions on tests
souradeep-das 16762ec
Turn vulture fully on, remove dead code, whitelist
Carsons-Eels 7631b97
remove setup.cfg
souradeep-das e9e94ed
Switch to newer license metadata format
SamWilsn 5bab4da
chore: fix some minor issues
bytetigers a91a505
update eip7951 gas
souradeep-das 2171f03
update eip7918
souradeep-das 07bd1f1
update clz gas cost
gurukamath 2eb1ba4
Update EIP-7883: Change modexp gas calculation (#1318)
gurukamath 58d6dca
eip-7825: update tx gas limit (#1317)
gurukamath 20cdaf9
Remove redundant set_account call in json_to_state
reallesee 951e054
feat(weld): add eest tests as a submodule
gurukamath 6e993fc
chore: remove hardcoded fork reference osaka and fetch latest fork
Dyslex7c 5240354
fix(tox): add windows command for EEST tests
Dyslex7c 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 hidden or 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,32 @@ | ||
[flake8] | ||
dictionaries=en_US,python,technical | ||
docstring-convention = all | ||
extend-ignore = | ||
U101 | ||
E203 | ||
D107 | ||
D200 | ||
D203 | ||
D205 | ||
D212 | ||
D400 | ||
D401 | ||
D410 | ||
D411 | ||
D412 | ||
D413 | ||
D414 | ||
D415 | ||
D416 | ||
|
||
extend-exclude = | ||
doc/ | ||
tests/fixtures/ | ||
|
||
per-file-ignores = | ||
tests/*:D100,D101,D103,D104,E501,SC100,SC200 | ||
|
||
unused-arguments-ignore-abstract-functions = true | ||
unused-arguments-ignore-override-functions = true | ||
unused-arguments-ignore-overload-functions = true | ||
unused-arguments-ignore-dunder = true |
This file contains hidden or 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 hidden or 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 hidden or 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,3 +58,5 @@ pip-delete-this-directory.txt | |
tests/execution-spec-generated-tests | ||
tests/fixtures | ||
tests/t8n_testdata | ||
|
||
fixtures |
This file contains hidden or 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,3 @@ | ||
[submodule "eest_tests/execution-spec-tests"] | ||
path = eest_tests/execution-spec-tests | ||
url = https://github.com/ethereum/execution-spec-tests.git |
This file contains hidden or 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 hidden or 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 hidden or 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,8 @@ | ||
import pytest | ||
from ethereum_spec_tools.evm_tools.t8n.transition_tool import EELST8N | ||
from ethereum_clis import TransitionTool | ||
|
||
|
||
@pytest.hookimpl(tryfirst=True) | ||
def pytest_configure(config): | ||
TransitionTool.set_default_tool(EELST8N) |
Submodule execution-spec-tests
added at
6cf510
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
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.
The other CLI tools exist directly under
ethereum_spec_tools
. For consistency, this tool should as well.