-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Increase FinalityDepth & HistoryDepth defaults to match Polygon mainn…
…et (#12348) * Increase FinalityDepth & HistoryDepth defaults to match Polygon mainnet We have verified that finality tags on zkevm polygon are just as far behind latest as they are on other polygon chains (often 300-500 blocks). HistoryDepth needs to be larger for the same reason, and allow room for uncles. * Add Cardona defaults based on Goerli and increase FinalityDepth & BlockHistoryDepth for both chains * make config-docs * pnpm changeset * Re-run "make config-docs"
- Loading branch information
1 parent
6fa1f5d
commit efead72
Showing
5 changed files
with
120 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"chainlink": minor | ||
--- | ||
|
||
Update config for zkevm polygon chains |
23 changes: 23 additions & 0 deletions
23
core/chains/evm/config/toml/defaults/Polygon_Zkevm_Cardona.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
ChainID = '2442' | ||
FinalityDepth = 500 | ||
NoNewHeadsThreshold = '12m' | ||
MinIncomingConfirmations = 1 | ||
LogPollInterval = '30s' | ||
RPCDefaultBatchSize = 100 | ||
|
||
[OCR] | ||
ContractConfirmations = 1 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '3m' | ||
|
||
[GasEstimator] | ||
PriceMin = '50 mwei' | ||
BumpPercent = 40 | ||
BumpMin = '20 mwei' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 12 | ||
|
||
[HeadTracker] | ||
HistoryDepth = 2000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters