File tree Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Expand file tree Collapse file tree 2 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 10
10
#
11
11
# Homestead Block
12
12
#
13
- HOMESTEAD_MAINNET_BLOCK = 1150000
13
+ HOMESTEAD_MAINNET_BLOCK = BlockNumber ( 1150000 )
14
14
15
15
16
16
#
24
24
#
25
25
# Tangerine Whistle Block
26
26
#
27
- TANGERINE_WHISTLE_MAINNET_BLOCK = 2463000
27
+ TANGERINE_WHISTLE_MAINNET_BLOCK = BlockNumber ( 2463000 )
28
28
29
29
30
30
#
31
31
# Spurious Dragon Block
32
32
#
33
- SPURIOUS_DRAGON_MAINNET_BLOCK = 2675000
33
+ SPURIOUS_DRAGON_MAINNET_BLOCK = BlockNumber ( 2675000 )
34
34
35
35
36
36
#
37
37
# Byzantium Block
38
38
#
39
- BYZANTIUM_MAINNET_BLOCK = 4370000
39
+ BYZANTIUM_MAINNET_BLOCK = BlockNumber ( 4370000 )
Original file line number Diff line number Diff line change
1
+ from eth_typing import BlockNumber
2
+
3
+
1
4
# https://github.com/ethereum/EIPs/blob/master/EIPS/eip-155.md
2
5
ROPSTEN_CHAIN_ID = 3
3
6
6
9
#
7
10
# DAO Block
8
11
#
9
- DAO_FORK_ROPSTEN_BLOCK = 0
12
+ DAO_FORK_ROPSTEN_BLOCK = BlockNumber ( 0 )
10
13
11
14
12
15
#
13
16
# Tangerine Whistle Block
14
17
#
15
- TANGERINE_WHISTLE_ROPSTEN_BLOCK = 0
18
+ TANGERINE_WHISTLE_ROPSTEN_BLOCK = BlockNumber ( 0 )
16
19
17
20
18
21
#
19
22
# Homestead Block
20
23
#
21
- HOMESTEAD_ROPSTEN_BLOCK = 0
24
+ HOMESTEAD_ROPSTEN_BLOCK = BlockNumber ( 0 )
22
25
23
26
24
27
#
25
28
# Spurious Dragon Block
26
29
#
27
- SPURIOUS_DRAGON_ROPSTEN_BLOCK = 10
30
+ SPURIOUS_DRAGON_ROPSTEN_BLOCK = BlockNumber ( 10 )
28
31
29
32
30
33
#
31
34
# Byzantium Block
32
35
#
33
- BYZANTIUM_ROPSTEN_BLOCK = 1700000
36
+ BYZANTIUM_ROPSTEN_BLOCK = BlockNumber ( 1700000 )
34
37
35
38
36
39
#
37
40
# Constantinople
38
41
#
39
- CONSTANTINOPLE_ROPSTEN_BLOCK = 4230000
42
+ CONSTANTINOPLE_ROPSTEN_BLOCK = BlockNumber ( 4230000 )
You can’t perform that action at this time.
0 commit comments