nimbus.prater: enable full light client data

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2022-09-28 15:24:36 +02:00
parent 7da6edf144
commit 759b3c8bf3
No known key found for this signature in database
GPG Key ID: 09AA5403E54D9931
2 changed files with 6 additions and 2 deletions

View File

@ -64,7 +64,7 @@ beacon_node_subscribe_all: true
beacon_node_light_client_data_enabled: '{{ (node.public_api is defined and node.public_api) }}'
beacon_node_light_client_data_serve: true
beacon_node_light_client_data_import_mode: 'full'
#beacon_node_web3_urls: '{{ beacon_node_web3_urls_all }}'
# Web3 Auth RPC
beacon_node_web3_jwt_secret: '{{ geth_authrpc_jwtsecret }}'
beacon_node_web3_urls: |-
{{ (data_center == "he-eu-hel1")

View File

@ -68,7 +68,11 @@ beacon_node_service_user_pass: '{{lookup("bitwarden", "nimbus/windows", field="p
# MEV Payload Builder
beacon_node_payload_builder_enabled: '{{ node.get("payload_builder", false) }}'
beacon_node_payload_builder_url: 'https://builder-relay-goerli.flashbots.net/'
# HTTP RPC support is unstable
# Light client data
beacon_node_light_client_data_enabled: '{{ (node.public_api is defined and node.public_api) }}'
beacon_node_light_client_data_serve: true
beacon_node_light_client_data_import_mode: 'full'
# Web3 Auth RPC
beacon_node_web3_urls: ['http://localhost:{{ geth_authrpc_port }}']
beacon_node_web3_jwt_secret: '{{ geth_authrpc_jwtsecret }}'