forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add ethereum-metrics-exporter (paradigmxyz#3573)
Co-authored-by: Bjerg <[email protected]>
- Loading branch information
1 parent
e7cedee
commit 64ca521
Showing
7 changed files
with
3,667 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
consensus: | ||
enabled: true | ||
url: "http://lighthouse:5052" | ||
name: "consensus-client" | ||
execution: | ||
enabled: true | ||
url: "http://reth:8545" | ||
name: "execution-client" | ||
modules: | ||
- "eth" | ||
- "net" | ||
- "web3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,11 @@ | ||
# Borrowed from EthStaker's prepare for the merge guide | ||
# See https://github.com/remyroy/ethstaker/blob/main/prepare-for-the-merge.md#configuring-a-jwt-token-file | ||
mkdir -p jwttoken | ||
openssl rand -hex 32 | tr -d "\n" | tee > jwttoken/jwt.hex | ||
|
||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||
mkdir -p ${SCRIPT_DIR}/jwttoken | ||
if [[ ! -f ${SCRIPT_DIR}/jwttoken/jwt.hex ]] | ||
then | ||
openssl rand -hex 32 | tr -d "\n" | tee > ${SCRIPT_DIR}/jwttoken/jwt.hex | ||
else | ||
echo "${SCRIPT_DIR}/jwttoken/jwt.hex already exists!" | ||
fi |
Oops, something went wrong.