Skip to content

Commit

Permalink
fix(bsc): set the default minimum gas price to 3 gwei for mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
friedemannf committed May 2, 2024
1 parent 841fe61 commit 3165a49
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/six-ads-lick.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chainlink": patch
---

#bugfix Bump the BSC default GasEstimator.PriceMin to 3 gwei
3 changes: 2 additions & 1 deletion core/chains/evm/config/toml/defaults/BSC_Mainnet.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ Enabled = true

[GasEstimator]
PriceDefault = '5 gwei'
PriceMin = '1 gwei'
# The distributed default config sets the minimum gas price to 3 gwei
PriceMin = '3 gwei'
BumpMin = '5 gwei'
# 15s delay since feeds update every minute in volatile situations
BumpThreshold = 5
Expand Down
2 changes: 1 addition & 1 deletion docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2447,7 +2447,7 @@ Enabled = true
Mode = 'BlockHistory'
PriceDefault = '5 gwei'
PriceMax = '115792089237316195423570985008687907853269984665.640564039457584007913129639935 tether'
PriceMin = '1 gwei'
PriceMin = '3 gwei'
LimitDefault = 500000
LimitMax = 500000
LimitMultiplier = '1'
Expand Down

0 comments on commit 3165a49

Please sign in to comment.