From 8d06575a198fad668c1346461dfdba9c144adc3e Mon Sep 17 00:00:00 2001 From: Finley Decker Date: Mon, 28 Oct 2024 19:41:39 -1000 Subject: [PATCH] validate config --- .../config/toml/defaults/Celo_Testnet.toml | 42 ++++++++++++------- 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/core/chains/evm/config/toml/defaults/Celo_Testnet.toml b/core/chains/evm/config/toml/defaults/Celo_Testnet.toml index eb43f080b7..dd0ee766b4 100644 --- a/core/chains/evm/config/toml/defaults/Celo_Testnet.toml +++ b/core/chains/evm/config/toml/defaults/Celo_Testnet.toml @@ -1,20 +1,30 @@ -ChainID = '44787' -ChainType = 'celo' -FinalityDepth = 10 -LogPollInterval = '5s' +[[EVM]] +ChainID = "44787" +ChainType = "celo" +FinalityTagEnabled = true +FinalityDepth = 2750 +LogPollInterval = "1s" +NoNewHeadsThreshold = "1m" MinIncomingConfirmations = 1 -NoNewHeadsThreshold = '1m' -OCR.ContractConfirmations = 1 -NoNewFinalizedHeadsThreshold = '1m' +NoNewFinalizedHeadsThreshold = "45m" -[GasEstimator] -PriceDefault = '5 gwei' -PriceMax = '500 gwei' -PriceMin = '5 gwei' -BumpMin = '2 gwei' +[EVM.GasEstimator] +EIP1559DynamicFees = true +PriceMin = "5 gwei" +PriceMax = "1000 gwei" +BumpMin = "2 gwei" -[GasEstimator.BlockHistory] -BlockHistorySize = 24 +[EVM.GasEstimator.BlockHistory] +BlockHistorySize = 60 -[HeadTracker] -HistoryDepth = 50 +[EVM.Transactions] +ResendAfterThreshold = "30s" + +[EVM.HeadTracker] +HistoryDepth = 2750 + +[EVM.NodePool] +SyncThreshold = 10 + +[EVM.OCR] +ContractConfirmations = 1 \ No newline at end of file