Skip to content

Commit

Permalink
validate config
Browse files Browse the repository at this point in the history
  • Loading branch information
finleydecker committed Oct 29, 2024
1 parent d888177 commit 8d06575
Showing 1 changed file with 26 additions and 16 deletions.
42 changes: 26 additions & 16 deletions core/chains/evm/config/toml/defaults/Celo_Testnet.toml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8d06575

Please sign in to comment.