Skip to content

Commit

Permalink
Update mainnet gvr (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
syjn99 authored Dec 9, 2024
1 parent 7aeda12 commit 44692b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="staking_deposit",
version='2.7.0',
version='2.7.1',
py_modules=["staking_deposit"],
packages=find_packages(exclude=('tests', 'docs')),
python_requires=">=3.8,<3.10",
Expand Down
4 changes: 2 additions & 2 deletions staking_deposit/settings.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from typing import Dict, NamedTuple
from eth_utils import decode_hex

DEPOSIT_CLI_VERSION = '2.7.0'
DEPOSIT_CLI_VERSION = '2.7.1'


class BaseChainSetting(NamedTuple):
Expand All @@ -21,7 +21,7 @@ class BaseChainSetting(NamedTuple):
# Over Setting
OverSetting = BaseChainSetting(
NETWORK_NAME=OVER, GENESIS_FORK_VERSION=bytes.fromhex('00000018'),
GENESIS_VALIDATORS_ROOT=bytes.fromhex('0000000000000000000000000000000000000000000000000000000000000000')) # TODO: Update GVR
GENESIS_VALIDATORS_ROOT=bytes.fromhex('e24c5db2b830319137301a75decfdd5e793f7f7acd6817727996f824856cc8dd'))
# Over Dolphin Setting
OverDolphinSetting = BaseChainSetting(
NETWORK_NAME=OVER_DOLPHIN, GENESIS_FORK_VERSION=bytes.fromhex('00000028'),
Expand Down

0 comments on commit 44692b0

Please sign in to comment.