Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add nimbus gnosis #78

Merged
merged 4 commits into from
Jan 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "3.8"
services:
brain:
image: "brain.web3signer-gnosis.dnp.dappnode.eth:0.1.8"
image: "brain.web3signer-gnosis.dnp.dappnode.eth:1.0.8"
build:
context: brain
environment:
Expand All @@ -10,7 +10,7 @@ services:
volumes:
- "brain_data:/app/data"
web3signer:
image: "web3signer.web3signer-gnosis.dnp.dappnode.eth:0.1.8"
image: "web3signer.web3signer-gnosis.dnp.dappnode.eth:1.0.8"
healthcheck:
test: >-
curl -H 'Host: web3signer.web3signer-gnosis.dappnode'
Expand Down Expand Up @@ -43,10 +43,10 @@ services:
depends_on:
postgres:
condition: service_started
image: "flyway.web3signer-gnosis.dnp.dappnode.eth:0.1.8"
image: "flyway.web3signer-gnosis.dnp.dappnode.eth:1.0.8"
restart: on-failure
postgres:
image: "postgres.web3signer-gnosis.dnp.dappnode.eth:0.1.8"
image: "postgres.web3signer-gnosis.dnp.dappnode.eth:1.0.8"
healthcheck:
test: pg_isready -U postgres
interval: 5s
Expand Down
6 changes: 6 additions & 0 deletions releases.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,11 @@
"uploadedTo": {
"dappnode": "Thu, 03 Nov 2022 09:59:36 GMT"
}
},
"1.0.8": {
"hash": "/ipfs/QmRMQwKgCGfJtqpdtGb2ouFCQnGg5zhucGY7v6AQLp8jYv",
"uploadedTo": {
"dappnode": "Wed, 20 Dec 2023 07:51:50 GMT"
}
}
}
15 changes: 11 additions & 4 deletions web3signer/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,35 @@ case "$_DAPPNODE_GLOBAL_CONSENSUS_CLIENT_GNOSIS" in
export BEACON_NODE_API="http://beacon-chain.gnosis-beacon-chain-prysm.dappnode:3500"
export CLIENT_API="http://validator.gnosis-beacon-chain-prysm.dappnode:3500"
export TOKEN_FILE="/security/prysm/auth-token"
export CLIENTS_TO_REMOVE=(teku lodestar lighthouse)
export CLIENTS_TO_REMOVE=(teku lodestar lighthouse nimbus)
;;
"teku-gnosis.dnp.dappnode.eth")
ETH2_CLIENT_DNS="validator.teku-gnosis.dappnode"
export BEACON_NODE_API="http://beacon-chain.teku-gnosis.dappnode:3500"
export CLIENT_API="https://validator.teku-gnosis.dappnode:3500"
export TOKEN_FILE="/security/teku/validator-api-bearer"
export CLIENTS_TO_REMOVE=(lighthouse lodestar prysm)
export CLIENTS_TO_REMOVE=(lighthouse lodestar prysm nimbus)
;;
"lighthouse-gnosis.dnp.dappnode.eth")
ETH2_CLIENT_DNS="validator.lighthouse-gnosis.dappnode"
export BEACON_NODE_API="http://beacon-chain.lighthouse-gnosis.dappnode:3500"
export CLIENT_API="http://validator.lighthouse-gnosis.dappnode:3500"
export TOKEN_FILE="/security/lighthouse/api-token.txt"
export CLIENTS_TO_REMOVE=(teku lodestar prysm)
export CLIENTS_TO_REMOVE=(teku lodestar prysm nimbus)
;;
"lodestar-gnosis.dnp.dappnode.eth")
ETH2_CLIENT_DNS="validator.lodestar-gnosis.dappnode"
export BEACON_NODE_API="http://beacon-chain.lodestar-gnosis.dappnode:3500"
export CLIENT_API="http://validator.lodestar-gnosis.dappnode:3500"
export TOKEN_FILE="/security/lodestar/api-token.txt"
export CLIENTS_TO_REMOVE=(teku lighthouse prysm)
export CLIENTS_TO_REMOVE=(teku lighthouse prysm nimbus)
;;
"nimbus-gnosis.dnp.dappnode.eth")
4rgon4ut marked this conversation as resolved.
Show resolved Hide resolved
ETH2_CLIENT_DNS="beacon-validator.nimbus-gnosis.dappnode"
export BEACON_NODE_API="http://beacon-validator.nimbus-gnosis.dappnode:4500"
export CLIENT_API="http://beacon-validator.nimbus-gnosis.dappnode:3500"
export TOKEN_FILE="/security/nimbus/auth-token"
export CLIENTS_TO_REMOVE=(teku lighthouse prysm lodestar)
;;
*)
echo "_DAPPNODE_GLOBAL_CONSENSUS_CLIENT_GNOSIS env is not set properly"
Expand Down
Loading