Skip to content

Commit

Permalink
accidental commit
Browse files Browse the repository at this point in the history
Signed-off-by: Danno Ferrin <danno@numisight.com>
  • Loading branch information
shemnon committed May 31, 2024
1 parent 5716d2b commit aa0e3a3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/ethereum_test_tools/vm/opcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -5511,26 +5511,28 @@ class Opcodes(Opcode, Enum):
Source: [EIP-7069](https://eips.ethereum.org/EIPS/eip-7069)
"""

RETURNDATALOAD = Opcode(0xF7, popped_stack_items=1)
CREATE4 = Opcode(0xF7, popped_stack_items=5, pushed_stack_items=1)
"""
RETURNDATALOAD(offset)
!!! Note: This opcode is under development
CREATE4()
----
Description
----
Copy 32 bytes from returndata at offset onto the stack
Inputs
----
- offset: byte offset in the return data from the last executed sub context to copy
Outputs
----
Fork
----
EOF
Gas
----
3
"""

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

0 comments on commit aa0e3a3

Please sign in to comment.