Skip to content

v1.12

Latest

Choose a tag to compare

@github-actions github-actions released this 23 Feb 16:50
v1.12
c48dbe4

This release allows validators to be grouped into mux groups, each with their own relay set, timeouts, and timing game configurations via the global config file. This enables node operators running multiple validator sets to route getHeader requests to different relays per group.

Example Configuration

...
mux:
  - id: "lido"
    validator_pubkeys:
      - "0x8a1d7b..."
    timeout_get_header_ms: 900
    late_in_slot_time_ms: 1500
    relays:
      - url: https://0xpubkey@lido-relay.example.com
        enable_timing_games: true
        target_first_request_ms: 200
        frequency_get_header_ms: 100

  - id: "rocket-pool"
    validator_pubkeys:
      - "0x8d1d7b..."
    relays:
      - url: https://0xpubkey@rocketpool-relay.example.com

Docs and example config can be found here.

🚀 Features