-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Bitlayer and Mantle Configs and Error Strings (#1572)
## What - Adds config toml files for Bitlayer and Mantle - Adds Mantle custom error strings to `errors.go` - Relates to [SHIP-3965](https://smartcontract-it.atlassian.net/browse/SHIP-3965?atlOrigin=eyJpIjoiOGY5MmFkMzg2YTQ1NDNkOWIyYTE0MDQwYjBkMTQxMzMiLCJwIjoiaiJ9) ## Why - These values have already been added to infra and QA sign off is already complete for lanes using these configs - Mantle's error strings have already been added to infra-k8s in [this PR](smartcontractkit/infra-k8s#21749), but they should also be added to `errors.go` [SHIP-3965]: https://smartcontract-it.atlassian.net/browse/SHIP-3965?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
- Loading branch information
Showing
7 changed files
with
405 additions
and
27 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
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
11 changes: 11 additions & 0 deletions
11
core/chains/evm/config/toml/defaults/Bitlayer_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,11 @@ | ||
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 |
11 changes: 11 additions & 0 deletions
11
core/chains/evm/config/toml/defaults/Bitlayer_Testnet.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,11 @@ | ||
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 |
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,33 @@ | ||
ChainID = '5000' | ||
FinalityTagEnabled = true | ||
FinalityDepth = 1200 | ||
ChainType = 'optimismBedrock' | ||
LogPollInterval = '2s' | ||
MinIncomingConfirmations = 1 | ||
NoNewFinalizedHeadsThreshold = '40m0s' | ||
|
||
[HeadTracker] | ||
HistoryDepth = 1250 | ||
|
||
[GasEstimator] | ||
PriceMax = '120 gwei' | ||
# Limit values are high as Mantle's GasPrice is in native token (MNT) instead of ETH. Their proprietary TokenRatio parameter is used to adjust fees | ||
LimitDefault = 80_000_000_000 | ||
LimitMax = 100_000_000_000 | ||
BumpMin = '100 wei' | ||
BumpThreshold = 60 | ||
EIP1559DynamicFees = true | ||
FeeCapDefault = '120 gwei' | ||
# Mantle recommends setting Priority Fee to 0 in their docs linked here: https://docs-v2.mantle.xyz/devs/concepts/tx-fee/eip-1559#application-of-eip-1559-in-mantle-v2-tectonic | ||
TipCapDefault = '0 wei' | ||
TipCapMin = '0 wei' | ||
|
||
[GasEstimator.BlockHistory] | ||
# Default is 24, which leads to bumpy gas prices. In CCIP | ||
# we want to smooth out the gas prices, so we increase the sample size. | ||
BlockHistorySize = 200 | ||
# The formula for FeeCap is (current block base fee * (1.125 ^ EIP1559FeeCapBufferBlocks) + tipcap) | ||
# where tipcap is managed by the block history estimators. In the context of CCIP, | ||
# the gas price is relayed to other changes for quotes so we want accurate/avg not pessimistic values. | ||
# So we set this to zero so FeeCap = baseFee + tipcap. | ||
EIP1559FeeCapBufferBlocks = 0 |
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,23 +1,34 @@ | ||
ChainID = '5003' | ||
ChainType = 'optimismBedrock' | ||
# FT and FD are both present here because the dev effort rely only on FinalityTagEnabled are still in progress. | ||
# We expect to be able to rely only on FinalityTagEnabled=true in the short future. | ||
# https://chainlink-core.slack.com/archives/C05CS33N08N/p1715102940763339?thread_ts=1715102478.537529&cid=C05CS33N08N | ||
FinalityDepth = 1200 | ||
FinalityTagEnabled = true | ||
FinalityDepth = 1200 | ||
ChainType = 'optimismBedrock' | ||
LogPollInterval = '2s' | ||
NoNewHeadsThreshold = '0' | ||
MinIncomingConfirmations = 1 | ||
NoNewFinalizedHeadsThreshold = '60m0s' | ||
|
||
[HeadTracker] | ||
HistoryDepth = 600 | ||
HistoryDepth = 1250 | ||
|
||
[GasEstimator] | ||
Mode = 'L2Suggested' | ||
PriceMax = '200 gwei' | ||
LimitDefault = 100000000 | ||
FeeCapDefault = '200 gwei' | ||
PriceMax = '120 gwei' | ||
# Limit values are high as Mantle's GasPrice is in native token (MNT) instead of ETH. Their proprietary TokenRatio parameter is used to adjust fees | ||
LimitDefault = 80000000000 | ||
LimitMax = 100000000000 | ||
BumpMin = '100 wei' | ||
BumpPercent = 20 | ||
BumpThreshold = 60 | ||
EIP1559DynamicFees = true | ||
FeeCapDefault = '120 gwei' | ||
# Mantle reccomends setting Priority Fee to 0 in their docs linked here: https://docs-v2.mantle.xyz/devs/concepts/tx-fee/eip-1559#application-of-eip-1559-in-mantle-v2-tectonic | ||
TipCapDefault = '0 wei' | ||
TipCapMin = '0 wei' | ||
|
||
[GasEstimator.BlockHistory] | ||
# Default is 24, which leads to bumpy gas prices. In CCIP | ||
# we want to smooth out the gas prices, so we increase the sample size. | ||
BlockHistorySize = 200 | ||
# The formula for FeeCap is (current block base fee * (1.125 ^ EIP1559FeeCapBufferBlocks) + tipcap) | ||
# where tipcap is managed by the block history estimators. In the context of CCIP, | ||
# the gas price is relayed to other changes for quotes so we want accurate/avg not pessimistic values. | ||
# So we set this to zero so FeeCap = baseFee + tipcap. | ||
EIP1559FeeCapBufferBlocks = 0 |
Oops, something went wrong.