Skip to content

Commit

Permalink
Merge pull request #7 from dappnode/feature/update-prysm-token
Browse files Browse the repository at this point in the history
Update Prysm validator API token
  • Loading branch information
pablomendezroyo authored Oct 7, 2024
2 parents d3a63eb + c5e9ee1 commit 9846bd5
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 14 deletions.
6 changes: 3 additions & 3 deletions beacon-chain/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ FLAGS="--accept-terms-of-use \
--jwt-secret=$JWT_FILE_PATH \
--execution-endpoint=$ENGINE_URL \
--monitoring-host=0.0.0.0 \
--grpc-gateway-host=0.0.0.0 \
--grpc-gateway-port=$BEACON_API_PORT \
--grpc-gateway-corsdomain=$CORSDOMAIN \
--http-host=0.0.0.0 \
--http-port=$BEACON_API_PORT \
--http-cors-domain=$CORSDOMAIN \
--rpc-host=0.0.0.0 \
--verbosity=$VERBOSITY \
--p2p-tcp-port=$P2P_TCP_PORT \
Expand Down
2 changes: 1 addition & 1 deletion dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"upstream": [
{
"repo": "prysmaticlabs/prysm",
"version": "v5.0.4",
"version": "v5.1.0",
"arg": "UPSTREAM_VERSION"
},
{
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build:
context: beacon-chain
args:
UPSTREAM_VERSION: v5.0.4
UPSTREAM_VERSION: v5.1.0
STAKER_SCRIPTS_VERSION: v0.1.0
DATA_DIR: /data
volumes:
Expand All @@ -22,7 +22,7 @@ services:
build:
context: validator
args:
UPSTREAM_VERSION: v5.0.4
UPSTREAM_VERSION: v5.1.0
STAKER_SCRIPTS_VERSION: v0.1.0
DATA_DIR: /root/.eth2validators
volumes:
Expand Down
3 changes: 2 additions & 1 deletion package_variants/holesky/dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"holesky-geth.dnp.dappnode.eth": ">=1.0.1",
"holesky-nethermind.dnp.dappnode.eth": ">=0.1.10",
"holesky-besu.dnp.dappnode.eth": ">=0.1.2",
"holesky-erigon.dnp.dappnode.eth": ">=0.1.2"
"holesky-erigon.dnp.dappnode.eth": ">=0.1.2",
"web3signer-holesky.dnp.dappnode.eth": ">=0.1.7"
}
}
3 changes: 2 additions & 1 deletion package_variants/lukso/dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"docs": "https://docs.prylabs.network/docs/getting-started"
},
"optionalDependencies": {
"lukso-geth.dnp.dappnode.eth": ">=0.1.3"
"lukso-geth.dnp.dappnode.eth": ">=0.1.3",
"web3signer-lukso.dnp.dappnode.eth": ">=0.1.3"
}
}
3 changes: 2 additions & 1 deletion package_variants/mainnet/dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"geth.dnp.dappnode.eth": ">=0.1.44",
"nethermind.public.dappnode.eth": ">=1.0.53",
"besu.public.dappnode.eth": ">=1.2.11",
"erigon.dnp.dappnode.eth": ">=0.1.44"
"erigon.dnp.dappnode.eth": ">=0.1.44",
"web3signer.dnp.dappnode.eth": ">=2.0.9"
}
}
3 changes: 1 addition & 2 deletions validator/auth-token
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
b5bbbaf533b625a93741978857f13d7adeca58445a1fb00ecf3373420b92776c
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.e30.MxwOozSH-TLbW_XKepjyYDHm2IT8Ki0tD3AHuajfNMg
0xd59b8238ecaeb255d62c85c6ca8aee185870bd7a27e43f85fd2658267036d94a
6 changes: 3 additions & 3 deletions validator/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ FLAGS="--datadir=$DATA_DIR \
--beacon-rpc-provider=$BEACON_RPC_PROVIDER \
--beacon-rpc-gateway-provider=$BEACON_RPC_GATEWAY_PROVIDER \
--validators-external-signer-url=$SIGNER_API_URL \
--grpc-gateway-host=0.0.0.0 \
--grpc-gateway-port=$VALIDATOR_API_PORT \
--grpc-gateway-corsdomain=http://0.0.0.0:$VALIDATOR_API_PORT \
--http-host=0.0.0.0 \
--http-port=$VALIDATOR_API_PORT \
--http-cors-domain=http://0.0.0.0:$VALIDATOR_API_PORT \
--graffiti=$VALID_GRAFFITI \
--suggested-fee-recipient=$VALID_FEE_RECIPIENT \
--verbosity=$VERBOSITY \
Expand Down

0 comments on commit 9846bd5

Please sign in to comment.