Skip to content

Commit 677d708

Browse files
committed
opcode BASEFEE added
1 parent 7cbd82e commit 677d708

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/opcodes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@ def log_len(self) -> int:
199199
GASLIMIT = OpCode("GASLIMIT", 0x45, 0, 1)
200200
CHAINID = OpCode("CHAINID", 0x46, 0 ,1) # for block.number >= ISTANBUL_FORK_BLKNUM
201201
SELFBALANCE = OpCode("SELFBALANCE", 0x47, 0, 1) # for block.number >= ISTANBUL_FORK_BLKNUM
202+
BASEFEE = OpCode("BASEFEE", 0x48, 0, 1) # for block.number >= LONDON_FORK_BLKNUM
202203

203204
# Stack, Memory, Storage, Flow
204205
POP = OpCode("POP", 0x50, 1, 0)

0 commit comments

Comments
 (0)