Skip to content

Commit

Permalink
feat: Add reth to Mainnet, Holesky, Sepolia envs
Browse files Browse the repository at this point in the history
  • Loading branch information
khalifaa55 committed May 4, 2024
1 parent 37593f4 commit 949b18d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions templates/envs/holesky/execution/reth.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{{/* reth.tmpl */}}
{{ define "execution" }}
# --- Execution Layer - Execution Node - configuration ---
EC_IMAGE_VERSION={{.ElImage}}
RETH_LOG_LEVEL=info
EC_DATA_DIR={{.ElDataDir}}
EC_SYNC_MODE=snap
EC_JWT_SECRET_PATH={{.JWTSecretPath}}
{{ end }}
9 changes: 9 additions & 0 deletions templates/envs/mainnet/execution/reth.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{{/* reth.tmpl */}}
{{ define "execution" }}
# --- Execution Layer - Execution Node - configuration ---
EC_IMAGE_VERSION={{.ElImage}}
RETH_LOG_LEVEL=info
EC_DATA_DIR={{.ElDataDir}}
EC_SYNC_MODE=snap
EC_JWT_SECRET_PATH={{.JWTSecretPath}}
{{ end }}
9 changes: 9 additions & 0 deletions templates/envs/sepolia/execution/reth.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{{/* reth.tmpl */}}
{{ define "execution" }}
# --- Execution Layer - Execution Node - configuration ---
EC_IMAGE_VERSION={{.ElImage}}
RETH_LOG_LEVEL=info
EC_DATA_DIR={{.ElDataDir}}
EC_SYNC_MODE=snap
EC_JWT_SECRET_PATH={{.JWTSecretPath}}
{{ end }}

0 comments on commit 949b18d

Please sign in to comment.