-
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.
bci 1180 implement polygon zkevm soak (#11501)
* Add Polygon zkEVM config * Add more config * Adjust config * Test config * Debug without from block * Update config * Add on demand option * Update config * increased min PriceMin & resend threshold to avoid gas bumping & fast transactions * Update toml config * Update toml config * Update toml config * Update toml config mainnet * Update toml config mainnet * Update toml config mainnet * Update toml config mainnet * Adjust config * Patch go version * Patch go version * Fine tune config * Fine tune config * updated Price Min * Revert go version change * Update testing branch * Revert go mod * Update config docs --------- Co-authored-by: simsonraj <[email protected]>
- Loading branch information
1 parent
3399505
commit c76a01e
Showing
3 changed files
with
205 additions
and
0 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
core/chains/evm/config/toml/defaults/Polygon_Zkevm_Goerli.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,22 @@ | ||
ChainID = '1442' | ||
FinalityDepth = 1 | ||
NoNewHeadsThreshold = '12m' | ||
MinIncomingConfirmations = 1 | ||
LogPollInterval = '30s' | ||
|
||
[OCR] | ||
ContractConfirmations = 1 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '3m' | ||
|
||
[GasEstimator] | ||
PriceMin = '50 mwei' | ||
BumpPercent = 40 | ||
BumpMin = '20 mwei' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 12 | ||
|
||
[HeadTracker] | ||
HistoryDepth = 50 |
23 changes: 23 additions & 0 deletions
23
core/chains/evm/config/toml/defaults/Polygon_Zkevm_Mainnet.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 = '1101' | ||
FinalityDepth = 1 | ||
NoNewHeadsThreshold = '6m' | ||
MinIncomingConfirmations = 1 | ||
LogPollInterval = '30s' | ||
RPCBlockQueryDelay = 15 | ||
|
||
[OCR] | ||
ContractConfirmations = 1 | ||
|
||
[Transactions] | ||
ResendAfterThreshold = '3m' | ||
|
||
[GasEstimator] | ||
PriceMin = '100 mwei' | ||
BumpPercent = 40 | ||
BumpMin = '100 mwei' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 12 | ||
|
||
[HeadTracker] | ||
HistoryDepth = 50 |
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