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
Enables or disables validator liveness tracking. Used by [doppelganger detection](../../HowTo/Doppelganger-Detection.md). The default is `false`.
84
84
85
+
### builder-bid-compare-factor
86
+
87
+
<!--tabs-->
88
+
89
+
# Syntax
90
+
91
+
```bash
92
+
--builder-bid-compare-factor=<STRING>
93
+
```
94
+
95
+
# Example
96
+
97
+
```bash
98
+
--builder-bid-compare-factor=50
99
+
```
100
+
101
+
# Environment variable
102
+
103
+
```bash
104
+
TEKU_BUILDER_BID_COMPARE_FACTOR=50
105
+
```
106
+
107
+
# Configuration file
108
+
109
+
```bash
110
+
builder-bid-compare-factor: 50
111
+
```
112
+
113
+
<!--/tabs-->
114
+
115
+
The builder bid compare factor. The default is 100 (100%).
116
+
117
+
Execution layer clients in [Capella-enabled networks](https://notes.ethereum.org/@launchpad/withdrawals-faq#Q-What-is-ShanghaiCapella) provide the execution payload and the payload value. The beacon node compares this value against the builder bid to maximize the validator's profit or decrease network censorship at a low or no cost.
118
+
119
+
Use this option to set the compare factor applied to the builder bid value when comparing it to the locally produced payload. The factor is expressed in a percentage. For example, a builder bid compare factor of `80` means the local payload is chosen when its value is at least 80% of the builder bid value.
120
+
121
+
Set this option to `BUILDER_ALWAYS` to always use the builder bid, unless the bid is invalid.
0 commit comments