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
require.GreaterOrEqual(t, suggestions.TipCap.Perc99, suggestions.TipCap.Perc75, "Suggested 99th percentile tip cap should be greater than or equal to 75th percentile")
37
37
require.GreaterOrEqual(t, suggestions.TipCap.Max, suggestions.TipCap.Perc99, "Suggested max tip cap should be greater than or equal to 99th percentile")
# when enabled when creating a new Seth client we will send 10k wei from root address to root address
55
55
# to make sure transaction can be submitted and mined
@@ -81,6 +81,32 @@ key_sync_retries = 10
81
81
[block_stats]
82
82
rpc_requests_per_second_limit = 15
83
83
84
+
[[networks]]
85
+
name = "Ethereum_Mainnet"
86
+
dial_timeout = "1m"
87
+
transaction_timeout = "30s"
88
+
eip_1559_dynamic_fees = true
89
+
90
+
# automated gas estimation
91
+
gas_price_estimation_enabled = true
92
+
gas_price_estimation_blocks = 20
93
+
gas_price_estimation_tx_priority = "standard"
94
+
# how many times to try fetching & calculating gas price data in case of errors, defaults to 1 if empty
95
+
gas_price_estimation_attempt_count = 2
96
+
# urls_secret = ["xxx"]
97
+
98
+
# gas limits
99
+
transfer_gas_fee = 21_000
100
+
# gas limit should be explicitly set only if you are connecting to a node that's incapable of estimating gas limit itself (should only happen for very old versions)
101
+
# gas_limit = 14_000_000
102
+
103
+
# manual settings, used when gas_price_estimation_enabled is false or when it fails
0 commit comments