Skip to content
This repository was archived by the owner on Jul 2, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 2 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
16 changes: 7 additions & 9 deletions src/ethereum_test_tools/vm/opcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -5400,7 +5400,7 @@ class Opcodes(Opcode, Enum):
Source: [evm.codes/#FA](https://www.evm.codes/#FA)
"""

EXTSTATICCALL = Opcode(0xFB, popped_stack_items=4, pushed_stack_items=1)
EXTSTATICCALL = Opcode(0xFB, popped_stack_items=3, pushed_stack_items=1)
"""
EXTSTATICCALL(target_address, input_offset, input_size) = address
----
Expand Down Expand Up @@ -5434,28 +5434,26 @@ class Opcodes(Opcode, Enum):
Source: [EIP-7069](https://eips.ethereum.org/EIPS/eip-7069)
"""

CREATE4 = Opcode(0xF7, popped_stack_items=5, pushed_stack_items=1)
RETURNDATALOAD = Opcode(0xF7, popped_stack_items=1)
"""
!!! Note: This opcode is under development

CREATE4()
RETURNDATALOAD(offset)
----

Description
----
Copy 32 bytes from returndata at offset onto the stack

Inputs
----

Outputs
----
- offset: byte offset in the return data from the last executed sub context to copy

Fork
----
EOF

Gas
----

3
"""

REVERT = Opcode(0xFD, popped_stack_items=2)
Expand Down
Loading