diff --git a/core/chains/evm/config/toml/defaults/Fantom_Mainnet.toml b/core/chains/evm/config/toml/defaults/Fantom_Mainnet.toml index c7fb6ba4736..68ffede7d68 100644 --- a/core/chains/evm/config/toml/defaults/Fantom_Mainnet.toml +++ b/core/chains/evm/config/toml/defaults/Fantom_Mainnet.toml @@ -11,6 +11,8 @@ Enabled = true [GasEstimator] # Fantom network has been slow to include txs at times when using the BlockHistory estimator, and the recommendation is to use SuggestedPrice mode. Mode = 'SuggestedPrice' +# We don't want to place any limits on the minimum gas price with the SuggestedPrice estimator +PriceMin = '0' [OCR2.Automation] GasLimit = 3800000 \ No newline at end of file diff --git a/core/chains/evm/config/toml/defaults/Fantom_Testnet.toml b/core/chains/evm/config/toml/defaults/Fantom_Testnet.toml index 1e1aab14681..352cbd02e1f 100644 --- a/core/chains/evm/config/toml/defaults/Fantom_Testnet.toml +++ b/core/chains/evm/config/toml/defaults/Fantom_Testnet.toml @@ -8,6 +8,8 @@ RPCBlockQueryDelay = 2 [GasEstimator] Mode = 'SuggestedPrice' +# We don't want to place any limits on the minimum gas price with the SuggestedPrice estimator +PriceMin = '0' [OCR2.Automation] GasLimit = 3800000 \ No newline at end of file diff --git a/docs/CONFIG.md b/docs/CONFIG.md index 98259fd5962..71b9be6f2f3 100644 --- a/docs/CONFIG.md +++ b/docs/CONFIG.md @@ -2842,7 +2842,7 @@ Enabled = true Mode = 'SuggestedPrice' PriceDefault = '20 gwei' PriceMax = '115792089237316195423570985008687907853269984665.640564039457584007913129639935 tether' -PriceMin = '1 gwei' +PriceMin = '0' LimitDefault = 500000 LimitMax = 500000 LimitMultiplier = '1' @@ -3973,7 +3973,7 @@ Enabled = true Mode = 'SuggestedPrice' PriceDefault = '20 gwei' PriceMax = '115792089237316195423570985008687907853269984665.640564039457584007913129639935 tether' -PriceMin = '1 gwei' +PriceMin = '0' LimitDefault = 500000 LimitMax = 500000 LimitMultiplier = '1'