Skip to content
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
4 changes: 1 addition & 3 deletions src/dora/dora_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,8 @@ def get_config(
if dora_params.image == constants.DEFAULT_DORA_IMAGE:
if network_params.fulu_fork_epoch < constants.FAR_FUTURE_EPOCH:
IMAGE_NAME = "ethpandaops/dora:fulu-support"
env_vars["FRONTEND_PPROF"] = "true"
env_vars["FRONTEND_SHOW_SENSITIVE_PEER_INFOS"] = "true"
env_vars["FRONTEND_SHOW_PEER_DAS_INFOS"] = "true"
env_vars["FRONTEND_SHOW_SUBMIT_DEPOSIT"] = "true"
env_vars["FRONTEND_SHOW_SUBMIT_EL_REQUESTS"] = "true"
if network_params.eip7732_fork_epoch < constants.FAR_FUTURE_EPOCH:
IMAGE_NAME = "ethpandaops/dora:eip7732-support"
if network_params.eip7805_fork_epoch < constants.FAR_FUTURE_EPOCH:
Expand Down Expand Up @@ -158,6 +155,7 @@ def new_config_template_data(
):
return {
"Network": network,
"PublicRPC": el_client_info[0]["Execution_HTTP_URL"],
"ListenPortNum": listen_port_num,
"CLClientInfo": cl_client_info,
"ELClientInfo": el_client_info,
Expand Down
5 changes: 5 additions & 0 deletions static_files/dora-config/config.yaml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ frontend:
# file or inventory url to load validator names from
validatorNamesYaml: "/validator-ranges/validator-ranges.yaml"

publicRpcUrl: "{{ .PublicRPC }}"
rainbowkitProjectId: "15fe4ab4d5c0bcb6f0dc7c398301ff0e"
showSubmitDeposit: true
showSubmitElRequests: true

beaconapi:
# CL Client RPC
endpoints:
Expand Down
Loading