-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ccip-develop' into feat/productionize-examples
- Loading branch information
Showing
3 changed files
with
58 additions
and
30 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 |
---|---|---|
@@ -1,14 +1,28 @@ | ||
ChainID = '324' | ||
ChainType = 'zksync' | ||
FinalityDepth = 10 | ||
# 1200block ~ 20min concurrent with the l1_committed tag | ||
FinalityDepth = 1200 | ||
# block rate is ~2-5sec, so this ensures blocks are polled correctly | ||
LogPollInterval = '5s' | ||
MinIncomingConfirmations = 1 | ||
# sufficient time for RPC to be labelled out of sync, since blockRate is pretty fast | ||
NoNewHeadsThreshold = '1m' | ||
|
||
[GasEstimator] | ||
LimitDefault = 100_000_000 | ||
PriceMax = 18446744073709551615 | ||
PriceMin = 0 | ||
# no EIP1559 to ensure our estimator doesnot estimate gas with MaxPriorityFee which will break minFunding requirement | ||
EIP1559DynamicFees = false | ||
# high LimitDefault for worst case pubdata bytes with BatchGasLimit reduced to 4M in OCR2Config | ||
LimitDefault = 2_500_000_000 | ||
FeeCapDefault = '500 mwei' | ||
PriceDefault = '25 mwei' | ||
# p999 value for gasPrice based on historical data | ||
PriceMax = '500 mwei' | ||
# avg gasPrices are at 0.025 gwei | ||
PriceMin = '25 mwei' | ||
|
||
[GasEstimator.BlockHistory] | ||
# increasing this to smooth out gas estimation | ||
BlockHistorySize = 200 | ||
|
||
[HeadTracker] | ||
HistoryDepth = 50 | ||
# tracks top N blocks to keep in heads database table. Should store atleast the same # of blocks as finalityDepth | ||
HistoryDepth = 1500 |
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 |
---|---|---|
@@ -1,14 +1,28 @@ | ||
ChainID = '300' | ||
ChainType = 'zksync' | ||
FinalityDepth = 10 | ||
# 200block ~ 20min concurrent with the l1_committed tag | ||
FinalityDepth = 200 | ||
# block rate is ~2-5sec, so this ensures blocks are polled correctly | ||
LogPollInterval = '5s' | ||
MinIncomingConfirmations = 1 | ||
# sufficient time for RPC to be labelled out of sync, since blockRate is pretty fast | ||
NoNewHeadsThreshold = '1m' | ||
|
||
[GasEstimator] | ||
LimitDefault = 100_000_000 | ||
PriceMax = 18446744073709551615 | ||
PriceMin = 0 | ||
# no EIP1559 to ensure our estimator doesnot estimate gas with MaxPriorityFee which will break minFunding requirement | ||
EIP1559DynamicFees = false | ||
# high LimitDefault for worst case pubdata bytes with BatchGasLimit reduced to 4M in OCR2Config | ||
LimitDefault = 2_500_000_000 | ||
FeeCapDefault = '500 mwei' | ||
PriceDefault = '25 mwei' | ||
# p999 value for gasPrice based on historical data | ||
PriceMax = '500 mwei' | ||
# avg gasPrices are at 0.025 gwei | ||
PriceMin = '25 mwei' | ||
|
||
[GasEstimator.BlockHistory] | ||
# increasing this to smooth out gas estimation | ||
BlockHistorySize = 200 | ||
|
||
[HeadTracker] | ||
HistoryDepth = 50 | ||
# tracks top N blocks to keep in heads database table. Should store atleast the same # of blocks as finalityDepth | ||
HistoryDepth = 250 |
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