-
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.
CCIP Config backported from CCIP repo (#15856)
* Moving configs directly from CCIP repo * Moving configs directly from CCIP repo
- Loading branch information
1 parent
ab46d04
commit da03b85
Showing
75 changed files
with
955 additions
and
54 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,9 +1,15 @@ | ||
ChainID = '592' | ||
ChainType = 'astar' | ||
FinalityTagEnabled = true | ||
FinalityDepth = 100 | ||
LogPollInterval = '6s' | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = false | ||
PriceMax = '100000 gwei' | ||
LimitDefault = 8000000 | ||
LimitDefault = 8000000 | ||
|
||
[HeadTracker] | ||
# FinalityDepth < 1k => FinalityTagBypass = false | ||
# https://smartcontract-it.atlassian.net/browse/SHIP-4078 | ||
FinalityTagBypass = false |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
ChainID = '60808' | ||
# OP stack https://docs.gobob.xyz/learn/introduction/stack-overview#rollup-layer | ||
ChainType = 'optimismBedrock' | ||
# FinalityDepth in mainnet showed more than 3k | ||
FinalityDepth = 3150 | ||
# block_time was: 2s, adding 1 second buffer | ||
LogPollInterval = '3s' | ||
|
||
# finality_depth * block_time / 60 secs = ~105 min (finality time) | ||
NoNewFinalizedHeadsThreshold = '110m' | ||
|
||
FinalityTagEnabled = true | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
Mode = 'FeeHistory' | ||
|
||
[GasEstimator.FeeHistory] | ||
# block_time was: 2s, per recommendation skip 1-2 blocks | ||
CacheTimeout = '4s' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 100 | ||
|
||
[HeadTracker] | ||
# FinalityDepth < 1k => FinalityTagBypass = false | ||
# https://smartcontract-it.atlassian.net/browse/SHIP-4078 | ||
FinalityTagBypass = false |
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,28 @@ | ||
ChainID = '808813' | ||
# OP stack https://docs.gobob.xyz/learn/introduction/stack-overview#rollup-layer | ||
ChainType = 'optimismBedrock' | ||
# FinalityDepth in mainnet showed more than 3k | ||
FinalityDepth = 3150 | ||
# block_time was: 2s, adding 1 second buffer | ||
LogPollInterval = '3s' | ||
|
||
# finality_depth * block_time / 60 secs = ~105 min (finality time) | ||
NoNewFinalizedHeadsThreshold = '110m' | ||
|
||
FinalityTagEnabled = true | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
Mode = 'FeeHistory' | ||
|
||
[GasEstimator.FeeHistory] | ||
# block_time was: 2s, per recommendation skip 1-2 blocks | ||
CacheTimeout = '4s' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 100 | ||
|
||
[HeadTracker] | ||
# FinalityDepth < 1k => FinalityTagBypass = false | ||
# https://smartcontract-it.atlassian.net/browse/SHIP-4078 | ||
FinalityTagBypass = false |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
ChainID = '80084' | ||
# finality_depth: instant | ||
FinalityDepth = 10 | ||
# block_time: 5s, adding 1 second buffer | ||
LogPollInterval = '6s' | ||
|
||
# finality_depth * block_time / 60 secs = ~0.8 min (finality time) | ||
NoNewFinalizedHeadsThreshold = '5m' | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
Mode = 'FeeHistory' | ||
|
||
[GasEstimator.FeeHistory] | ||
# block_time was: 5s, per recommendation skip 1-2 blocks | ||
CacheTimeout = '10s' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 100 | ||
|
||
[HeadTracker] | ||
# FinalityDepth < 1k => FinalityTagBypass = false | ||
# https://smartcontract-it.atlassian.net/browse/SHIP-4078 | ||
FinalityTagBypass = false |
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,16 @@ | ||
ChainID = '200901' | ||
FinalityTagEnabled = false | ||
FinalityDepth = 21 # confirmed with Bitlayer team and recommended by docs: https://docs.bitlayer.org/docs/Learn/BitlayerNetwork/AboutFinality/#about-finality-at-stage-bitlayer-pos-bitlayer-mainnet-v1 | ||
|
||
[GasEstimator] | ||
Mode = 'FeeHistory' | ||
EIP1559DynamicFees = false | ||
PriceMax = '1 gwei' # DS&A recommended value | ||
PriceMin = '40 mwei' # During testing, we saw minimum gas prices ~50 mwei | ||
PriceDefault = '1 gwei' # As we set PriceMax to '1 gwei' and PriceDefault must be less than or equal to PriceMax | ||
FeeCapDefault = '1 gwei' # As we set PriceMax to '1 gwei' and FeeCapDefault must be less than or equal to PriceMax | ||
|
||
[HeadTracker] | ||
# FinalityDepth < 1k => FinalityTagBypass = false | ||
# https://smartcontract-it.atlassian.net/browse/SHIP-4078 | ||
FinalityTagBypass = false |
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,16 @@ | ||
ChainID = '200810' | ||
FinalityTagEnabled = false | ||
FinalityDepth = 21 # confirmed with Bitlayer team and recommended by docs: https://docs.bitlayer.org/docs/Learn/BitlayerNetwork/AboutFinality/#about-finality-at-stage-bitlayer-pos-bitlayer-mainnet-v1 | ||
|
||
[GasEstimator] | ||
Mode='FeeHistory' | ||
EIP1559DynamicFees = false | ||
PriceMax = '1 gwei' # DS&A recommended value | ||
PriceMin = '40 mwei' # During testing, we saw minimum gas prices ~50 mwei | ||
PriceDefault = '1 gwei' # As we set PriceMax to '1 gwei' and PriceDefault must be less than or equal to PriceMax | ||
FeeCapDefault = '1 gwei' # As we set PriceMax to '1 gwei' and FeeCapDefault must be less than or equal to PriceMax | ||
|
||
[HeadTracker] | ||
# FinalityDepth < 1k => FinalityTagBypass = false | ||
# https://smartcontract-it.atlassian.net/browse/SHIP-4078 | ||
FinalityTagBypass = false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
ChainID = '223' | ||
# OP stack from questionnaire https://docs.google.com/spreadsheets/d/1l8dx1GzxEnjgwH5x3vB60FUr5iFALzPcs6W_wOAiuDs/edit?gid=625078687#gid=625078687 | ||
ChainType = 'optimismBedrock' | ||
# finality_depth was: ~1900 | ||
FinalityDepth = 2000 | ||
# block_time: ~2s, adding 1 second buffer | ||
LogPollInterval = '3s' | ||
|
||
# finality_depth * block_time / 60 secs = ~66 min (finality time) | ||
NoNewFinalizedHeadsThreshold = '70m' | ||
|
||
FinalityTagEnabled = true | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
Mode = 'FeeHistory' | ||
|
||
[GasEstimator.FeeHistory] | ||
# block_time was: 2s, per recommendation skip 1-2 blocks | ||
CacheTimeout = '4s' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 100 |
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 = '1123' | ||
# OP stack from questionnaire https://docs.google.com/spreadsheets/d/1l8dx1GzxEnjgwH5x3vB60FUr5iFALzPcs6W_wOAiuDs/edit?gid=625078687#gid=625078687 | ||
ChainType = 'optimismBedrock' | ||
# finality_depth was: ~1900 | ||
FinalityDepth = 2000 | ||
# block_time: ~2s, adding 1 second buffer | ||
LogPollInterval = '3s' | ||
|
||
# finality_depth * block_time / 60 secs = ~66 min (finality time) | ||
NoNewFinalizedHeadsThreshold = '70m' | ||
|
||
FinalityTagEnabled = true | ||
|
||
[GasEstimator] | ||
EIP1559DynamicFees = true | ||
Mode = 'FeeHistory' | ||
|
||
[GasEstimator.FeeHistory] | ||
# block_time was: 2s, per recommendation skip 1-2 blocks | ||
CacheTimeout = '4s' | ||
|
||
[GasEstimator.BlockHistory] | ||
BlockHistorySize = 100 |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
ChainID = '1666600000' | ||
LinkContractAddress = '0x218532a12a389a4a92fC0C5Fb22901D1c19198aA' | ||
LogPollInterval = '2s' | ||
MinIncomingConfirmations = 1 | ||
NoNewHeadsThreshold = '30s' | ||
|
||
[GasEstimator] | ||
PriceDefault = '5 gwei' | ||
|
||
[HeadTracker] | ||
# FinalityDepth < 1k => FinalityTagBypass = false | ||
# https://smartcontract-it.atlassian.net/browse/SHIP-4078 | ||
FinalityTagBypass = false |
Oops, something went wrong.