Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bci 1180 implement polygon zkevm soak #11501

Merged
merged 28 commits into from
Jan 26, 2024
Merged
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
67ca1bf
Add Polygon zkEVM config
davidcauchi May 31, 2023
5caeb72
Add more config
davidcauchi Jun 1, 2023
ded4aa5
Adjust config
davidcauchi Jun 1, 2023
c49fe23
Test config
davidcauchi Jun 2, 2023
79fb872
Debug without from block
davidcauchi Aug 11, 2023
4ec80b5
Update config
davidcauchi Aug 24, 2023
ca0ffb3
Add on demand option
davidcauchi Aug 24, 2023
da81c7f
Update config
davidcauchi Aug 24, 2023
4406bf3
increased min PriceMin & resend threshold to avoid gas bumping & fast…
simsonraj Aug 24, 2023
e6cfeb8
Update toml config
davidcauchi Aug 25, 2023
b7e20b5
Update toml config
davidcauchi Aug 25, 2023
99ccca9
Update toml config
davidcauchi Aug 25, 2023
de609b1
Update toml config mainnet
davidcauchi Aug 25, 2023
8a32e3f
Update toml config mainnet
davidcauchi Aug 25, 2023
0fabbfb
Update toml config mainnet
davidcauchi Aug 25, 2023
9ff097a
Update toml config mainnet
davidcauchi Aug 25, 2023
9e79d5c
Adjust config
davidcauchi Sep 1, 2023
398a25f
Patch go version
davidcauchi Sep 29, 2023
8fb56ab
Patch go version
davidcauchi Sep 29, 2023
11a2771
Fine tune config
davidcauchi Sep 29, 2023
93df4a6
Fine tune config
davidcauchi Sep 29, 2023
7c85b02
updated Price Min
simsonraj Sep 30, 2023
1f37945
Revert go version change
davidcauchi Oct 20, 2023
4071aae
Update testing branch
davidcauchi Dec 5, 2023
bc0361f
Revert go mod
davidcauchi Dec 6, 2023
2d2d60b
Update config docs
davidcauchi Dec 6, 2023
1deca1e
Merge branch 'develop' into feature/bci-1180-implement-polygon-zkevm-…
davidcauchi Dec 7, 2023
2b2e625
Merge branch 'develop' into feature/bci-1180-implement-polygon-zkevm-…
davidcauchi Jan 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/on-demand-ocr-soak-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ on:
- "KROMA_SEPOLIA"
- "WEMIX_TESTNET"
- "WEMIX_MAINNET"
- "POLYGON_ZKEVM_GOERLI"
- "POLYGON_ZKEVM_MAINNET"
fundingPrivateKey:
description: Private funding key (Skip for Simulated)
required: false
Expand Down
22 changes: 22 additions & 0 deletions core/chains/evm/config/toml/defaults/Polygon_Zkevm_Goerli.toml
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 core/chains/evm/config/toml/defaults/Polygon_Zkevm_Mainnet.toml
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
Loading