Skip to content

Commit 33cdafe

Browse files
authored
Merge pull request #372 from ethereum/dev
Release v2.6.0
2 parents d7b5304 + a3ed31b commit 33cdafe

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ tox_common: &tox_common
55
steps:
66
- checkout
77
- restore_cache:
8-
key: tox-deps3-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }}
8+
key: tox-deps4-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }}
99
- run:
1010
name: install dependencies
11-
command: pip install --user tox
11+
command: pip install tox
1212
- run:
1313
name: run tox
14-
command: ~/.local/bin/tox
14+
command: tox
1515
- save_cache:
1616
paths:
1717
- .tox
1818
- ./eggs
19-
key: tox-deps3-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }}
19+
key: tox-deps4-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.txt" }}-{{ checksum "requirements_test.txt" }}-{{ checksum "setup.py" }}-{{ checksum "Makefile" }}
2020

2121
orbs:
2222
win: circleci/[email protected] # The Windows orb give you everything you need to start using the Windows executor.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="staking_deposit",
9-
version='2.5.0',
9+
version='2.6.0',
1010
py_modules=["staking_deposit"],
1111
packages=find_packages(exclude=('tests', 'docs')),
1212
python_requires=">=3.8,<4",

staking_deposit/settings.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from typing import Dict, NamedTuple
22
from eth_utils import decode_hex
33

4-
DEPOSIT_CLI_VERSION = '2.5.0'
4+
DEPOSIT_CLI_VERSION = '2.6.0'
55

66

77
class BaseChainSetting(NamedTuple):
@@ -15,6 +15,7 @@ class BaseChainSetting(NamedTuple):
1515
PRATER = 'prater'
1616
SEPOLIA = 'sepolia'
1717
ZHEJIANG = 'zhejiang'
18+
HOLESKY = 'holesky'
1819

1920
# Mainnet setting
2021
MainnetSetting = BaseChainSetting(
@@ -32,6 +33,10 @@ class BaseChainSetting(NamedTuple):
3233
ZhejiangSetting = BaseChainSetting(
3334
NETWORK_NAME=ZHEJIANG, GENESIS_FORK_VERSION=bytes.fromhex('00000069'),
3435
GENESIS_VALIDATORS_ROOT=bytes.fromhex('53a92d8f2bb1d85f62d16a156e6ebcd1bcaba652d0900b2c2f387826f3481f6f'))
36+
# Holesky setting
37+
HoleskySetting = BaseChainSetting(
38+
NETWORK_NAME=HOLESKY, GENESIS_FORK_VERSION=bytes.fromhex('00017000'),
39+
GENESIS_VALIDATORS_ROOT=bytes.fromhex('9143aa7c615a7f7115e2b6aac319c03529df8242ae705fba9df39b79c59fa8b1'))
3540

3641

3742
ALL_CHAINS: Dict[str, BaseChainSetting] = {
@@ -40,6 +45,7 @@ class BaseChainSetting(NamedTuple):
4045
PRATER: GoerliSetting, # Prater is the old name of the Prater/Goerli testnet
4146
SEPOLIA: SepoliaSetting,
4247
ZHEJIANG: ZhejiangSetting,
48+
HOLESKY: HoleskySetting,
4349
}
4450

4551

0 commit comments

Comments
 (0)