File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = "staking_deposit" ,
9
- version = '2.6 .0' ,
9
+ version = '2.7 .0' ,
10
10
py_modules = ["staking_deposit" ],
11
11
packages = find_packages (exclude = ('tests' , 'docs' )),
12
12
python_requires = ">=3.8,<4" ,
Original file line number Diff line number Diff line change 1
1
from typing import Dict , NamedTuple
2
2
from eth_utils import decode_hex
3
3
4
- DEPOSIT_CLI_VERSION = '2.6 .0'
4
+ DEPOSIT_CLI_VERSION = '2.7 .0'
5
5
6
6
7
7
class BaseChainSetting (NamedTuple ):
@@ -35,7 +35,7 @@ class BaseChainSetting(NamedTuple):
35
35
GENESIS_VALIDATORS_ROOT = bytes .fromhex ('53a92d8f2bb1d85f62d16a156e6ebcd1bcaba652d0900b2c2f387826f3481f6f' ))
36
36
# Holesky setting
37
37
HoleskySetting = BaseChainSetting (
38
- NETWORK_NAME = HOLESKY , GENESIS_FORK_VERSION = bytes .fromhex ('00017000 ' ),
38
+ NETWORK_NAME = HOLESKY , GENESIS_FORK_VERSION = bytes .fromhex ('01017000 ' ),
39
39
GENESIS_VALIDATORS_ROOT = bytes .fromhex ('9143aa7c615a7f7115e2b6aac319c03529df8242ae705fba9df39b79c59fa8b1' ))
40
40
41
41
You can’t perform that action at this time.
0 commit comments