Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions config/coordinator/coordinator-docker.config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ polling-interval="PT21S"
max-messages-to-anchor=100

[l2-network-gas-pricing]
disabled = false
disabled = true
price-update-interval = "PT12S"

fee-history-block-count = 50
Expand All @@ -231,19 +231,19 @@ backoff-delay = "PT1S"
failures-warning-threshold = 2

[l2-network-gas-pricing.variable-cost-pricing]
gas-price-fixed-cost = 3000000
legacy-fees-multiplier = 1.2
gas-price-fixed-cost = 1000000
legacy-fees-multiplier = 1
margin = 4.0
variable-cost-upper-bound = 10000000001 # ~10 GWEI
variable-cost-lower-bound = 90000001 # ~0.09 GWEI
variable-cost-upper-bound = 10000001 # ~10 GWEI
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

10 Gwei?

variable-cost-lower-bound = 1000 # ~0.001 GWEI

[l2-network-gas-pricing.extra-data-pricing-propagation]
extra-data-update-recipient = "http://sequencer:8545/"

[l2-network-gas-pricing.legacy]
type="SampleTransaction"
gas-price-upper-bound = 10000000000 # 10 GWEI
gas-price-lower-bound = 90000000 # 0.09 GWEI
gas-price-upper-bound = 10000001 # 10 GWEI
gas-price-lower-bound = 1000 # 0.001 GWEI

[l2-network-gas-pricing.json-rpc-pricing-propagation]
geth-gas-price-update-recipients = [
Expand Down
4 changes: 2 additions & 2 deletions config/sequencer/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ plugin-linea-max-tx-calldata-size=60000
plugin-linea-max-block-gas=24000000
plugin-linea-tx-pool-min-margin="0.8" # WARNING - DEV VALUE
plugin-linea-min-margin="1.0" # WARNING - DEV VALUE
plugin-linea-fixed-gas-cost-wei=30000000
plugin-linea-variable-gas-cost-wei=1000000000
plugin-linea-fixed-gas-cost-wei=300000
plugin-linea-variable-gas-cost-wei=100000
plugin-linea-extra-data-set-min-gas-price-enabled=true
plugin-linea-estimate-gas-min-margin="1.2 " # WARNING - DEV VALUE
strict-tx-replay-protection-enabled=false
Expand Down