Skip to content

Commit

Permalink
Merge pull request #179 from remyroy/sdc270
Browse files Browse the repository at this point in the history
Update for sdc 2.7.0
  • Loading branch information
remyroy authored Sep 25, 2023
2 parents 29a63ca + b924b12 commit 2b68624
Show file tree
Hide file tree
Showing 166 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/electron/Eth2Deposit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { doesFileExist } from './BashUtils';
*/
const execFileProm = promisify(execFile);

const ETH2_DEPOSIT_DIR_NAME = "staking-deposit-cli-2.6.0";
const ETH2_DEPOSIT_DIR_NAME = "staking-deposit-cli-2.7.0";

/**
* Paths needed to call the stakingdeposit_proxy application using the Python 3 version installed on
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/bundle_proxy_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi

SCRIPTPATH="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"

EDCDIR=staking-deposit-cli-2.6.0
EDCDIR=staking-deposit-cli-2.7.0

TARGETPACKAGESPATH=$SCRIPTPATH/../../dist/packages
ETH2DEPOSITCLIPATH=$SCRIPTPATH/../vendors/$EDCDIR
Expand Down
2 changes: 1 addition & 1 deletion src/scripts/bundle_proxy_win.bat
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ rem Windows.

SET BATDIR=%~dp0

SET EDCDIR=staking-deposit-cli-2.6.0
SET EDCDIR=staking-deposit-cli-2.7.0

SET TARGETPACKAGESPATH=%BATDIR%..\..\dist\packages

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="staking_deposit",
version='2.6.0',
version='2.7.0',
py_modules=["staking_deposit"],
packages=find_packages(exclude=('tests', 'docs')),
python_requires=">=3.8,<4",
Expand Down
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.6.0'
DEPOSIT_CLI_VERSION = '2.7.0'


class BaseChainSetting(NamedTuple):
Expand Down Expand Up @@ -35,7 +35,7 @@ class BaseChainSetting(NamedTuple):
GENESIS_VALIDATORS_ROOT=bytes.fromhex('53a92d8f2bb1d85f62d16a156e6ebcd1bcaba652d0900b2c2f387826f3481f6f'))
# Holesky setting
HoleskySetting = BaseChainSetting(
NETWORK_NAME=HOLESKY, GENESIS_FORK_VERSION=bytes.fromhex('00017000'),
NETWORK_NAME=HOLESKY, GENESIS_FORK_VERSION=bytes.fromhex('01017000'),
GENESIS_VALIDATORS_ROOT=bytes.fromhex('9143aa7c615a7f7115e2b6aac319c03529df8242ae705fba9df39b79c59fa8b1'))


Expand Down

0 comments on commit 2b68624

Please sign in to comment.