Skip to content

Commit 4614c01

Browse files
Merge pull request #19 from ethgas-developer/feature/onboard-validator-bybatch
Feature/onboard-validator-bybatch
2 parents 9106ef6 + 274a441 commit 4614c01

7 files changed

Lines changed: 163 additions & 92 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ethgas_commit_boost_modules"
3-
version = "1.0.0-beta.4c"
3+
version = "1.0.0-beta.5"
44
rust-version = "1.83"
55
edition = "2021"
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ First and foremost, we would like to give a big shout out to the Commit-Boost te
4444

4545
## Start the Signer module
4646
* For registration of non-SSV validators, run `docker-compose -f docker-compose.yml up cb_signer`
47-
* if your signer starts successfully, you should see the log similar to `INFO Starting signing service version="0.8.0-rc.2" commit_hash="0661f17257065b49b374384231b294b6b75dca2f" modules=["ETHGAS_COMMIT"] port=20000 loaded_consensus=100 loaded_proxies=0` where `loaded_consensus` indicates the total number of loaded keys
47+
* if your signer starts successfully, you should see the log similar to `INFO Starting signing service version="0.8.0" commit_hash="f51f5bd61831fde943057b29ffd6e26e7eb23765" modules=["ETHGAS_COMMIT"] endpoint=0.0.0.0:20000 loaded_consensus=100 loaded_proxies=0` where `loaded_consensus` indicates the total number of loaded keys
4848

4949
## Start the ETHGas Commit module
5050
* Run `docker-compose -f docker-compose.yml up cb_ethgas_commit` to register in ETHGas Exchange

bin/ethgas_commit.rs

Lines changed: 157 additions & 85 deletions
Large diffs are not rendered by default.

bin/ethgas_deposit.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ impl EthgasExchangeService {
200200
.await?;
201201

202202
let res_json_login = res.json::<APILoginResponse>().await?;
203-
info!(exchange_login_eip712_message = ?res_json_login);
204203

205204
let eip712_message: Eip712Message = serde_json::from_str(&res_json_login.data.eip712Message)
206205
.map_err(|e| eyre::eyre!("Failed to parse EIP712 message: {}", e))?;

docker-compose-example-deposit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
cb_ethgas_deposit:
3-
image: ghcr.io/ethgas-developer/commitboost_ethgas_deposit:v1.0.0-beta.4c
3+
image: ghcr.io/ethgas-developer/commitboost_ethgas_deposit:v1.0.0-beta.5
44
container_name: cb_ethgas_deposit
55
environment:
66
CB_MODULE_ID: ETHGAS_DEPOSIT

docker-compose-example.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ services:
1717
networks:
1818
- monitoring_network
1919
cb_gen_jwt:
20-
image: ghcr.io/ethgas-developer/commitboost_gen_jwt:v1.0.0-beta.4c
20+
image: ghcr.io/ethgas-developer/commitboost_gen_jwt:v1.0.0-beta.5
2121
container_name: cb_gen_jwt
2222
environment:
2323
CB_MODULE_ID: ETHGAS_COMMIT
@@ -52,7 +52,7 @@ services:
5252
networks:
5353
- signer_network
5454
cb_ethgas_commit:
55-
image: ghcr.io/ethgas-developer/commitboost_ethgas_commit:v1.0.0-beta.4c
55+
image: ghcr.io/ethgas-developer/commitboost_ethgas_commit:v1.0.0-beta.5
5656
container_name: cb_ethgas_commit
5757
environment:
5858
CB_MODULE_ID: ETHGAS_COMMIT

0 commit comments

Comments
 (0)