Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ Users can select any of the artifacts depending on their testing needs for their
- ✨ All commands (`fill`, `consume`, `execute`) now work without having to clone the repository, e.g. `uv run --with git+https://github.com/ethereum/execution-spec-tests.git consume` now works from any folder ([#1863](https://github.com/ethereum/execution-spec-tests/pull/1863)).
- 🔀 Move Prague to stable and Osaka to develop ([#1573](https://github.com/ethereum/execution-spec-tests/pull/1573)).
- ✨ Add a `pytest.mark.with_all_typed_transactions` marker that creates default typed transactions for each `tx_type` supported by the current `fork` ([#1890](https://github.com/ethereum/execution-spec-tests/pull/1890)).
- ✨ Add basic support for ``Amsterdam`` fork in order to begin testing Glamsterdam ([#2069](https://github.com/ethereum/execution-spec-tests/pull/2069)).

### 🧪 Test Cases

Expand Down
2 changes: 2 additions & 0 deletions src/ethereum_test_forks/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
BPO2,
BPO3,
BPO4,
Amsterdam,
ArrowGlacier,
Berlin,
Byzantium,
Expand Down Expand Up @@ -83,6 +84,7 @@
"TransitionForkAdapter",
"TransitionForkOrNoneAdapter",
"ForkAttribute",
"Amsterdam",
"ArrowGlacier",
"Berlin",
"BerlinToLondonAt5",
Expand Down
9 changes: 9 additions & 0 deletions src/ethereum_test_forks/forks/forks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1665,3 +1665,12 @@ def is_deployed(cls) -> bool:
development.
"""
return False


class Amsterdam(Osaka):
"""Amsterdam fork."""

@classmethod
def is_deployed(cls) -> bool:
"""Return True if this fork is deployed."""
return False
5 changes: 5 additions & 0 deletions src/pytest_plugins/eels_resolutions.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,10 @@
},
"BPO4": {
"same_as": "EELSMaster"
},
"Amsterdam": {
"git_url": "https://github.com/fselmo/execution-specs.git",
"branch": "feat/amsterdam-fork-and-block-access-lists",
"commit": "59ff2946ca30879079b2ef2b601ae09106ca08f7"
}
}
1 change: 1 addition & 0 deletions tests/amsterdam/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Test cases for EVM functionality introduced in Amsterdam, [EIP-7773: Hardfork Meta - Glamsterdam](https://eip.directory/eips/eip-7773).""" # noqa: E501
Loading