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
{{ message }}
This repository was archived by the owner on Oct 25, 2024. It is now read-only.
--builder.rate_limit_duration value (default: "500ms")
87
103
Determines rate limit of events processed by builder. For example, a value of
88
104
"500ms" denotes that the builder processes events every 500ms. A duration string
@@ -120,21 +136,19 @@ $ geth --help
120
136
blocks. For example, if a slot is 12 seconds long, and the offset is 2 seconds,
121
137
the builder will submit blocks at 10 seconds into the slot.
122
138
[$FLASHBOTS_BUILDER_SUBMISSION_OFFSET]
123
-
124
-
--builder.validation_blacklist value
125
-
Path to file containing blacklisted addresses, json-encoded list of strings
126
-
139
+
127
140
--builder.validator_checks (default: false)
128
141
Enable the validator checks
129
142
130
143
MINER
131
144
132
145
--miner.algotype value (default: "mev-geth")
133
-
Block building algorithm to use [=mev-geth] (mev-geth, greedy)
146
+
[NOTE: Deprecated, please use builder.algotype instead] Block building algorithm
147
+
to use [=mev-geth] (mev-geth, greedy, greedy-buckets)
134
148
135
-
--miner.blocklist value
136
-
flashbots - Path to JSON file with list of blocked addresses. Miner will ignore
137
-
txs that touch mentioned addresses.
149
+
--miner.blocklist value
150
+
[NOTE: Deprecated, please use builder.blacklist] flashbots - Path to JSON file with
151
+
list of blocked addresses. Miner will ignore txs that touch mentioned addresses.
138
152
139
153
--miner.extradata value
140
154
Block extra data set by the miner (default = client version)
@@ -178,8 +192,7 @@ See the [metrics docs](https://geth.ethereum.org/docs/monitoring/metrics) for ge
178
192
179
193
If you want to reject transactions interacting with certain addresses, save the addresses in json file with an array of strings. Deciding whether to use such a list, as well as maintaining it, is your own responsibility.
180
194
181
-
- for block building, use `--miner.blocklist`
182
-
- for validation, use `--builder.validation_blacklist`
195
+
- for block building and validation, use `--builder.blacklist`
183
196
184
197
--
185
198
@@ -229,7 +242,7 @@ Miner is responsible for block creation. Request from the `builder` is routed to
229
242
*`algo_greedy.go` implements logic of the block building. Bundles and transactions are sorted in the order of effective gas price then
230
243
we try to insert everything into to block until gas limit is reached. Failing bundles are reverted during the insertion but txs are not.
231
244
* Builder can filter transactions touching a particular set of addresses.
232
-
If a bundle or transaction touches one of the addresses it is skipped. (see `--miner.blocklist` flag)
245
+
If a bundle or transaction touches one of the addresses it is skipped. (see `--builder.blacklist` flag)
Copy file name to clipboardExpand all lines: cmd/utils/flags.go
+70-22Lines changed: 70 additions & 22 deletions
Original file line number
Diff line number
Diff line change
@@ -548,7 +548,7 @@ var (
548
548
}
549
549
MinerAlgoTypeFlag=&cli.StringFlag{
550
550
Name: "miner.algotype",
551
-
Usage: "Block building algorithm to use [=mev-geth] (mev-geth, greedy, greedy-buckets)",
551
+
Usage: "[NOTE: Deprecated, please use builder.algotype instead] Block building algorithm to use [=mev-geth] (mev-geth, greedy, greedy-buckets)",
552
552
Value: "mev-geth",
553
553
Category: flags.MinerCategory,
554
554
}
@@ -581,8 +581,7 @@ var (
581
581
}
582
582
MinerBlocklistFileFlag=&cli.StringFlag{
583
583
Name: "miner.blocklist",
584
-
Usage: "flashbots - Path to JSON file with list of blocked addresses. Miner will ignore txs that touch mentioned addresses.",
585
-
Value: "",
584
+
Usage: "[NOTE: Deprecated, please use builder.blacklist] flashbots - Path to JSON file with list of blocked addresses. Miner will ignore txs that touch mentioned addresses.",
0 commit comments