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
Copy file name to clipboardExpand all lines: config.example.toml
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -49,9 +49,16 @@ min_bid_eth = 0.0
49
49
# to force local building and miniminzing the risk of missed slots. See also the timing games section below
50
50
# OPTIONAL, DEFAULT: 2000
51
51
late_in_slot_time_ms = 2000
52
-
# Whether to enable extra validation of get_header responses, if this is enabled `rpc_url` must also be set
53
-
# OPTIONAL, DEFAULT: false
54
-
extra_validation_enabled = false
52
+
# The level of validation to perform on get_header responses. Less is faster but not as safe. Supported values:
53
+
# - "none": no validation, just accept the bid provided by the relay as-is and pass it back without decoding or checking it
54
+
# - "standard": perform standard validation of the header provided by the relay, which checks the bid's signature and several hashes to make sure it's legal (default)
55
+
# - "extra": perform extra validation on top of standard validation, which includes checking the bid against the execution layer via the `rpc_url` (requires `rpc_url` to be set)
56
+
# OPTIONAL, DEFAULT: standard
57
+
header_validation_mode = "standard"
58
+
# The level of validation to perform on submit_block responses. Less is faster but not as safe. Supported values:
59
+
# - "none": no validation, just accept the full unblinded block provided by the relay as-is and pass it back without decoding or checking it
60
+
# - "standard": perform standard validation of the unblinded block provided by the relay, which verifies things like the included KZG commitments and the block hash (default)
61
+
block_validation_mode = "standard"
55
62
# Execution Layer RPC url to use for extra validation
let offset = get_ssz_value_offset_for_fork(fork).unwrap();// If there isn't a supported fork, this needs to be updated prior to release so panicking is fine
0 commit comments