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
# Max age of a transaction in the mempool. Null for no age limit.
77
82
# mempool_tx_max_age: "5h"
78
83
mempool_ttl: null
79
-
l2_gas_target: 2000000000
80
-
min_l2_gas_price: 100000
81
-
l2_gas_price_max_change_denominator: 48
84
+
85
+
# L2 gas price configuration - choose either 'fixed' or 'eip1559'.
86
+
# To override this through CLI, you need to override both the type and the values, or it will panic or lead to unexpected results!
87
+
#
88
+
# Option 1: Fixed gas price
89
+
# l2_gas_price:
90
+
# type: fixed
91
+
# price: 2500
92
+
# For overriding through CLI, use `--chain-config-override=l2_gas_price.type=fixed,l2_gas_price.price=25000`
93
+
#
94
+
# Option 2: EIP-1559 dynamic gas pricing
95
+
# For overriding through CLI, use `--chain-config-override=l2_gas_price.type=eip1559,l2_gas_price.target=2000000000,l2_gas_price.min_price=100000,l2_gas_price.max_change_denominator=48`
0 commit comments