Skip to content

Commit 758bf00

Browse files
authored
Update keeper config block number (#454)
Signed-off-by: cyc60 <avsysoev60@gmail.com>
1 parent bcd4265 commit 758bf00

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,14 +154,14 @@ Head to [Usage](#usage) to launch your operator service.
154154
Pull the latest docker operator docker image:
155155

156156
```bash
157-
docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v3.0.2
157+
docker pull europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v3.0.3
158158
```
159159

160160
You can also build the docker image from source by cloning this repo and executing the following command from within
161161
the `v3-operator` folder:
162162

163163
```bash
164-
docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v3.0.2 .
164+
docker build --pull -t europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v3.0.3 .
165165
```
166166

167167
You will execute Operator Service commands using the format below (note the use of flags are optional):
@@ -170,7 +170,7 @@ You will execute Operator Service commands using the format below (note the use
170170
docker run --rm -ti \
171171
-u $(id -u):$(id -g) \
172172
-v ~/.stakewise/:/data \
173-
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v3.0.2 \
173+
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v3.0.3 \
174174
src/main.py COMMAND \
175175
--flagA=123 \
176176
--flagB=xyz
@@ -393,7 +393,7 @@ below:
393393
docker run --restart on-failure:10 \
394394
-u $(id -u):$(id -g) \
395395
-v ~/.stakewise/:/data \
396-
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v3.0.2 \
396+
europe-west4-docker.pkg.dev/stakewiselabs/public/v3-operator:v3.0.3 \
397397
src/main.py start \
398398
--vault=0x3320ad928c20187602a2b2c04eeaa813fa899468 \
399399
--data-dir=/data \

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "v3-operator"
3-
version = "v3.0.2"
3+
version = "v3.0.3"
44
description = "StakeWise operator service for registering vault validators"
55
authors = ["StakeWise Labs <info@stakewise.io>"]
66
package-mode = false

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ http_copy() {
281281
github_release() {
282282
owner_repo=$1
283283
version=$2
284-
test -z "$version" && version="v3.0.2"
284+
test -z "$version" && version="v3.0.3"
285285
giturl="https://github.com/${owner_repo}/releases/${version}"
286286
json=$(http_copy "$giturl" "Accept:application/json")
287287
test -z "$json" && return 1

src/config/networks.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def IS_SUPPORT_V2_MIGRATION(self) -> bool:
4949
HOT_WALLET_MIN_BALANCE=Web3.to_wei('0.03', 'ether'),
5050
STAKEWISE_API_URL='https://mainnet-api.stakewise.io/graphql',
5151
RATED_API_URL='https://api.rated.network',
52-
CONFIG_UPDATE_EVENT_BLOCK=BlockNumber(18470104),
52+
CONFIG_UPDATE_EVENT_BLOCK=BlockNumber(21471524),
5353
DEFAULT_DVT_RELAYER_ENDPOINT='https://mainnet-dvt-relayer.stakewise.io',
5454
),
5555
HOLESKY: NetworkConfig(
@@ -65,7 +65,7 @@ def IS_SUPPORT_V2_MIGRATION(self) -> bool:
6565
HOT_WALLET_MIN_BALANCE=Web3.to_wei('0.03', 'ether'),
6666
STAKEWISE_API_URL='https://holesky-api.stakewise.io/graphql',
6767
RATED_API_URL='https://api.rated.network',
68-
CONFIG_UPDATE_EVENT_BLOCK=BlockNumber(215397),
68+
CONFIG_UPDATE_EVENT_BLOCK=BlockNumber(3236751),
6969
DEFAULT_DVT_RELAYER_ENDPOINT='https://holesky-dvt-relayer.stakewise.io',
7070
),
7171
GNOSIS: NetworkConfig(
@@ -81,7 +81,7 @@ def IS_SUPPORT_V2_MIGRATION(self) -> bool:
8181
HOT_WALLET_MIN_BALANCE=Web3.to_wei('0.01', 'ether'),
8282
STAKEWISE_API_URL='https://gnosis-api.stakewise.io/graphql',
8383
RATED_API_URL='https://api.rated.network',
84-
CONFIG_UPDATE_EVENT_BLOCK=BlockNumber(34778569),
84+
CONFIG_UPDATE_EVENT_BLOCK=BlockNumber(37640206),
8585
DEFAULT_DVT_RELAYER_ENDPOINT='gnosis-dvt-relayer.stakewise.io',
8686
),
8787
CHIADO: NetworkConfig(
@@ -97,7 +97,7 @@ def IS_SUPPORT_V2_MIGRATION(self) -> bool:
9797
HOT_WALLET_MIN_BALANCE=Web3.to_wei('0.01', 'ether'),
9898
STAKEWISE_API_URL='https://chiado-api.stakewise.io/graphql',
9999
RATED_API_URL='https://api.rated.network',
100-
CONFIG_UPDATE_EVENT_BLOCK=BlockNumber(10627606),
100+
CONFIG_UPDATE_EVENT_BLOCK=BlockNumber(12896244),
101101
DEFAULT_DVT_RELAYER_ENDPOINT='chiado-dvt-relayer.stakewise.io',
102102
),
103103
}

0 commit comments

Comments
 (0)