nimbus.sepolia: use nimbus-eth1 Engine API WS port

Related to:
https://github.com/status-im/nimbus-eth1/issues/1486

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2023-03-06 11:29:51 +01:00
parent c854752503
commit 03ef7c54bb
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
2 changed files with 6 additions and 3 deletions

View File

@ -65,7 +65,7 @@
- name: infra-role-nimbus-eth1
src: git@github.com:status-im/infra-role-nimbus-eth1.git
version: b3490cde3b77484f32716689af5127d783b436d6
version: 7ff2c237de3f773afe28d2ac4ce395914e6e1e0c
scm: git
- name: infra-role-nimbus-fluffy

View File

@ -10,7 +10,10 @@ nimbus_eth1_metrics_address: '0.0.0.0'
nimbus_eth1_rpc_enabled: true
nimbus_eth1_rpc_port: '{{ 8545 + idx|int + 22 }}'
nimbus_eth1_ws_enabled: true
nimbus_eth1_ws_port: '{{ 9546 + idx|int + 22 }}'
nimbus_eth1_ws_port: '{{ 8646 + idx|int + 22 }}'
nimbus_eth1_engine_ws_enabled: true
nimbus_eth1_engine_ws_port: '{{ 8551 + idx|int + 22 }}'
nimbus_eth1_graphql_port: '{{ 8848 + idx|int + 22 }}'
nimbus_eth1_jwt_secret: '{{lookup("bitwarden", "nimbus/jwt-token")}}'
# Beacon Nodes -----------------------------------------------------------------
@ -26,7 +29,7 @@ beacon_node_build_frequency: 'daily'
beacon_node_validator_monitor_auto: true
beacon_node_validator_monitor_totals: true
#Eth1 Sync
beacon_node_web3_urls: ['ws://localhost:{{ nimbus_eth1_ws_port }}']
beacon_node_web3_urls: ['ws://localhost:{{ nimbus_eth1_engine_ws_port }}']
beacon_node_web3_jwt_secret: '{{ nimbus_eth1_jwt_secret }}'
# Validators from nimbus-private repo¬
beacon_node_dist_validators_enabled: '{{ node.start is defined and node.end is defined }}'