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.
Add builder submission offset flag and update default submission offset from end of slot to 3 seconds (#80)
* Based on data analysis, we find that validators make a getHeader call near the end of the slot
* The activity of other builders indicates submissions coalesce around t-3 to t+1, where t is the end of the slot
* Currently, Flashbots builder submits starting at t-4.
* This was always meant to be a temporary measure to make sure we don't risk the stability of existing builder by inducing too late a submission.
* This task adds support for changing the submission to t-3 and exposes configurable CLI and environment variable parameters for builder submission offset.
Copy file name to clipboardExpand all lines: cmd/utils/flags.go
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -809,7 +809,8 @@ var (
809
809
810
810
BuilderRateLimitDuration=&cli.StringFlag{
811
811
Name: "builder.rate_limit_duration",
812
-
Usage: "Determines rate limit of events processed by builder; a duration string is a possibly signed sequence "+
812
+
Usage: "Determines rate limit of events processed by builder. For example, a value of \"500ms\" denotes that the builder processes events every 500ms. "+
813
+
"A duration string is a possibly signed sequence "+
813
814
"of decimal numbers, each with optional fraction and a unit suffix, such as \"300ms\", \"-1.5h\" or \"2h45m\"",
0 commit comments