Skip to content
This repository was archived by the owner on Apr 8, 2026. It is now read-only.

Commit 0ddd764

Browse files
committed
Add Berlin HF
1 parent 10f038b commit 0ddd764

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

include/evmc/evmc.h

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -762,6 +762,7 @@ enum evmc_revision
762762
* The Petersburg revision.
763763
*
764764
* Other names: Constantinople2, ConstantinopleFix.
765+
*
765766
* https://eips.ethereum.org/EIPS/eip-1716
766767
*/
767768
EVMC_PETERSBURG = 6,
@@ -773,8 +774,15 @@ enum evmc_revision
773774
*/
774775
EVMC_ISTANBUL = 7,
775776

777+
/**
778+
* The Berlin revision.
779+
*
780+
* The spec draft: https://eips.ethereum.org/EIPS/eip-2070.
781+
*/
782+
EVMC_BERLIN = 8,
783+
776784
/** The maximum EVM revision supported. */
777-
EVMC_MAX_REVISION = EVMC_ISTANBUL,
785+
EVMC_MAX_REVISION = EVMC_BERLIN,
778786

779787

780788
/**

0 commit comments

Comments
 (0)