Skip to content

Commit

Permalink
Set PriceMin to match pip-35 definition (#14014)
Browse files Browse the repository at this point in the history
  • Loading branch information
Madalosso authored Aug 6, 2024
1 parent 0a7372c commit c2c31c0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/tasty-walls-collect.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chainlink": patch
---

#updated Update Polygon configs to match PIP-35
4 changes: 3 additions & 1 deletion core/chains/evm/config/toml/defaults/Polygon_Amoy.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ NoNewFinalizedHeadsThreshold = '12m'
MaxQueued = 5000

[GasEstimator]
EIP1559DynamicFees = true
PriceDefault = '25 gwei'
PriceMax = '115792089237316195423570985008687907853269984665.640564039457584007913129639935 tether'
PriceMin = '25 gwei'
EIP1559DynamicFees = true
BumpMin = '20 gwei'
BumpThreshold = 5

Expand Down
3 changes: 2 additions & 1 deletion core/chains/evm/config/toml/defaults/Polygon_Mumbai.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ RPCDefaultBatchSize = 100
MaxQueued = 5000

[GasEstimator]
PriceDefault = '1 gwei'
PriceDefault = '25 gwei'
PriceMax = '115792089237316195423570985008687907853269984665.640564039457584007913129639935 tether'
PriceMin = '25 gwei'
BumpMin = '20 gwei'
BumpThreshold = 5

Expand Down
8 changes: 4 additions & 4 deletions docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6322,9 +6322,9 @@ Enabled = true

[GasEstimator]
Mode = 'BlockHistory'
PriceDefault = '1 gwei'
PriceDefault = '25 gwei'
PriceMax = '115792089237316195423570985008687907853269984665.640564039457584007913129639935 tether'
PriceMin = '1 gwei'
PriceMin = '25 gwei'
LimitDefault = 500000
LimitMax = 500000
LimitMultiplier = '1'
Expand Down Expand Up @@ -6415,9 +6415,9 @@ Enabled = true

[GasEstimator]
Mode = 'BlockHistory'
PriceDefault = '20 gwei'
PriceDefault = '25 gwei'
PriceMax = '115792089237316195423570985008687907853269984665.640564039457584007913129639935 tether'
PriceMin = '1 gwei'
PriceMin = '25 gwei'
LimitDefault = 500000
LimitMax = 500000
LimitMultiplier = '1'
Expand Down

0 comments on commit c2c31c0

Please sign in to comment.