You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Maximum number of validators to register in a single request.
65
68
# OPTIONAL, DEFAULT: "" (unlimited)
66
69
validator_registration_batch_size = ""
70
+
# For any Registry-based Mux configurations that have dynamic pubkey
71
+
# refreshing enabled, this is how often to refresh the list of pubkeys
72
+
# from the registry, in seconds. Enabling registry refreshing is done per-mux
73
+
# with the mux's `enable_refreshing` property. If none of the muxes have it
74
+
# enabled, this value will not be used.
75
+
# OPTIONAL, DEFAULT: 384
76
+
mux_registry_refresh_interval_seconds = 384
67
77
68
78
# The PBS module needs one or more [[relays]] as defined below.
69
79
[[relays]]
@@ -126,6 +136,11 @@ validator_pubkeys = [
126
136
# - Registry: details of a registry to load keys from. Supported registries:
127
137
# - Lido: NodeOperatorsRegistry
128
138
# - SSV: SSV API
139
+
# You can toggle the 'enable_refreshing' flag to let this registry periodically query Lido or SSV and refresh the list of validator pubkeys belonging to the corresponding operator.
140
+
# Each of these registry entries must be unique:
141
+
# - There can only be one Lido entry with a given Lido node operator ID.
142
+
# - There can only be one SSV entry with a given SSV node operator ID.
143
+
# - A Lido entry can have the same node operator ID as an SSV entry if they happen to coincide; they're treated as separate entities.
0 commit comments