- 21 Mar, 2025 1 commit
-
-
luxq authored
-
- 23 Feb, 2025 1 commit
-
-
luxq authored
-
- 11 Feb, 2025 1 commit
-
-
luxq authored
-
- 09 Feb, 2025 1 commit
-
-
luxq authored
-
- 12 Jan, 2025 1 commit
-
-
luxq authored
-
- 02 Jan, 2025 7 commits
- 28 Dec, 2024 1 commit
-
-
luxq authored
-
- 21 Dec, 2024 2 commits
-
-
luxq authored
"
- 13 Dec, 2024 3 commits
- 12 Dec, 2024 2 commits
-
-
Barnabas Busa authored
-
pk910 authored
`electra-support` as been merged into master and a new release is available too.
-
- 11 Dec, 2024 2 commits
-
-
Barnabas Busa authored
Signed-off-by:
Barnabas Busa <barnabas.busa@ethereum.org>
-
Barnabas Busa authored
-
- 06 Dec, 2024 3 commits
-
-
Barnabas Busa authored
Signed-off-by:
Barnabas Busa <barnabas.busa@ethereum.org>
-
Barnabas Busa authored
-
Barnabas Busa authored
-
- 05 Dec, 2024 2 commits
-
-
Rafael Matias authored
-
Rafael Matias authored
-
- 04 Dec, 2024 3 commits
-
-
Barnabas Busa authored
-
Barnabas Busa authored
-
Rafael Matias authored
Prysm added QUIC to their client as per https://github.com/prysmaticlabs/prysm/pull/14688 . This currently broke our runs using the master branch prysm image due to the QUIC port running on 13000 by default. Which was conflicting with the settings we were providing for the UDP port: ```sh --p2p-quic-port value The QUIC port used by libp2p. (default: 13000) --p2p-tcp-port value The TCP port used by libp2p. (default: 13000) --p2p-udp-port value The UDP port used by the discovery service discv5. (default: 12000) ``` I've also added the CLI flags for it, but still commented out until a stable release is done.
-
- 03 Dec, 2024 2 commits
-
-
Barnabas Busa authored
Signed-off-by:
Barnabas Busa <barnabas.busa@ethereum.org>
-
Barnabas Busa authored
Depends on https://github.com/ethpandaops/eth-client-docker-image-builder/pull/208 Depends on https://github.com/flashbots/rbuilder/pull/237 --------- Signed-off-by:
Barnabas Busa <barnabas.busa@ethereum.org>
-
- 30 Nov, 2024 1 commit
-
-
Barnabas Busa authored
Signed-off-by:
Barnabas Busa <barnabas.busa@ethereum.org>
-
- 29 Nov, 2024 2 commits
-
-
ZT authored
fix #837 the default blockscout image version does not work on my machine. so i added the blockscout_params for blockscout service. now user can customize the image versions they want to use. it contains two params: ```yaml blockscout_params: # blockscout docker image to use # Defaults to the latest image image: "blockscout/blockscout:latest" # blockscout smart contract verifier image to use # Defaults to ghcr.io/blockscout/smart-contract-verifier:v1.9.0 verif_image: "ghcr.io/blockscout/smart-contract-verifier:v1.9.0" ``` i already tested it on my machine and it worke well. --------- Co-authored-by:
Barnabas Busa <barnabas.busa@ethereum.org> Co-authored-by:
Barnabas Busa <busa.barnabas@gmail.com>
-
Manu NALEPA authored
This PR has 2 commits: - Use different ports for gRPC and HTTP communication between Prysm VC and BN - Switch gRPC and HTTP ports to be consistent with default values. Before this PR, we had this issue: ``` docker inspect vc-1-geth-prysm--773bda94114946f3b501f3e293517426 [ { "Id": "93713c8d7020aeb505836a11a1858e27dd9ecac19e7e7ed4814f677c30bc9c48", "Created": "2024-11-29T13:05:02.300408215Z", "Path": "/validator", "Args": [ "--accept-terms-of-use=true", "--chain-config-file=/network-configs/config.yaml", "--suggested-fee-recipient=0x8943545177806ED17B9F23F0a21ee5948eCaa776", "--disable-monitoring=false", "--monitoring-host=0.0.0.0", "--monitoring-port=8080", "--graffiti=1-geth-prysm", "--wallet-dir=/validator-keys/prysm", "--wallet-password-file=/prysm-password/prysm-password.txt", "--beacon-rpc-provider=172.16.0.13:3500", "--beacon-rest-api-provider=172.16.0.13:3500", "--enable-beacon-rest-api" ], ``` ``` "--beacon-rpc-provider=172.16.0.13:3500", "--beacon-rest-api-provider=172.16.0.13:3500", ``` The Prysm VC tried to connect to the Prysm VC with the same port for the beacon API and the gRPC. Now, it is: **VC**: ``` ... "--beacon-rpc-provider=172.16.0.13:4000", "--beacon-rest-api-provider=http://172.16.0.13:3500" ... ``` BN: ``` ... "--rpc-host=0.0.0.0", "--rpc-port=4000", "--http-host=0.0.0.0", "--http-cors-domain=*", "--http-port=3500", ... ``` --------- Signed-off-by:
Barnabas Busa <barnabas.busa@ethereum.org> Co-authored-by:
Barnabas Busa <barnabas.busa@ethereum.org>
-
- 27 Nov, 2024 1 commit
-
-
Barnabas Busa authored
-
- 26 Nov, 2024 1 commit
-
-
Barnabas Busa authored
-
- 25 Nov, 2024 1 commit
-
-
Somnath authored
Rename `thorax` -> `erigontech` for docker hub. Not changing the `ethpandaops/erigon:main` image which appears to be the default, changing the pectra version tho. Latest published erigon images are now multi-arch tho
-
- 20 Nov, 2024 1 commit
-
-
Luca | Serenita authored
Adds the Vero validator client as a supported `vc_type`. The Vero VC doesn't handle keys and requires a remote signer to be used (`use_remote_signer: true`). It can handle the minimal preset, as well as custom `seconds_per_slot` values. I've added the "Vero - Detailed" Grafana dashboard. I'm not sure if it's a good fit for this repo, let me know if you'd like me to remove it. --------- Co-authored-by:
Barnabas Busa <barnabas.busa@ethereum.org>
-
- 18 Nov, 2024 1 commit
-
-
Rafael Matias authored
-