This repository was archived by the owner on Sep 8, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 11from eth_utils import decode_hex
22
33from .constants import (
4+ BERLIN_GOERLI_BLOCK ,
45 ISTANBUL_GOERLI_BLOCK ,
56 PETERSBURG_GOERLI_BLOCK ,
67)
910
1011from eth .rlp .headers import BlockHeader
1112from eth .vm .forks import (
13+ BerlinVM ,
1214 IstanbulVM ,
1315 PetersburgVM ,
1416)
1517
1618GOERLI_VM_CONFIGURATION = (
1719 (PETERSBURG_GOERLI_BLOCK , PetersburgVM ),
1820 (ISTANBUL_GOERLI_BLOCK , IstanbulVM ),
21+ (BERLIN_GOERLI_BLOCK , BerlinVM ),
1922)
2023
2124
Original file line number Diff line number Diff line change 1414# Istanbul
1515#
1616ISTANBUL_GOERLI_BLOCK = BlockNumber (1561651 )
17+
18+ BERLIN_GOERLI_BLOCK = BlockNumber (4460644 )
Original file line number Diff line number Diff line change 33from eth_utils import decode_hex
44
55from .constants import (
6+ BERLIN_ROPSTEN_BLOCK ,
67 BYZANTIUM_ROPSTEN_BLOCK ,
78 CONSTANTINOPLE_ROPSTEN_BLOCK ,
89 ISTANBUL_ROPSTEN_BLOCK ,
1819from eth .chains .base import Chain
1920from eth .rlp .headers import BlockHeader
2021from eth .vm .forks import (
22+ BerlinVM ,
2123 ByzantiumVM ,
2224 ConstantinopleVM ,
2325 IstanbulVM ,
3638 (CONSTANTINOPLE_ROPSTEN_BLOCK , ConstantinopleVM ),
3739 (PETERSBURG_ROPSTEN_BLOCK , PetersburgVM ),
3840 (ISTANBUL_ROPSTEN_BLOCK , IstanbulVM ),
39- (MUIR_GLACIER_ROPSTEN_BLOCK , MuirGlacierVM )
41+ (MUIR_GLACIER_ROPSTEN_BLOCK , MuirGlacierVM ),
42+ (BERLIN_ROPSTEN_BLOCK , BerlinVM ),
4043)
4144
4245
Original file line number Diff line number Diff line change 5757# Muir Glacier Block
5858#
5959MUIR_GLACIER_ROPSTEN_BLOCK = BlockNumber (7117117 )
60+ BERLIN_ROPSTEN_BLOCK = BlockNumber (9812189 )
You can’t perform that action at this time.
0 commit comments