From 3165a4976f549271e25c18dd67a129629c778bdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Friedemann=20F=C3=BCrst?= Date: Thu, 2 May 2024 13:32:47 +0200 Subject: [PATCH] fix(bsc): set the default minimum gas price to 3 gwei for mainnet --- .changeset/six-ads-lick.md | 5 +++++ core/chains/evm/config/toml/defaults/BSC_Mainnet.toml | 3 ++- docs/CONFIG.md | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .changeset/six-ads-lick.md diff --git a/.changeset/six-ads-lick.md b/.changeset/six-ads-lick.md new file mode 100644 index 00000000000..8b4b93d3995 --- /dev/null +++ b/.changeset/six-ads-lick.md @@ -0,0 +1,5 @@ +--- +"chainlink": patch +--- + +#bugfix Bump the BSC default GasEstimator.PriceMin to 3 gwei diff --git a/core/chains/evm/config/toml/defaults/BSC_Mainnet.toml b/core/chains/evm/config/toml/defaults/BSC_Mainnet.toml index 4268cb25da0..6ccd31016b7 100644 --- a/core/chains/evm/config/toml/defaults/BSC_Mainnet.toml +++ b/core/chains/evm/config/toml/defaults/BSC_Mainnet.toml @@ -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 diff --git a/docs/CONFIG.md b/docs/CONFIG.md index 61ba9256d9d..f75dcf76a02 100644 --- a/docs/CONFIG.md +++ b/docs/CONFIG.md @@ -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'