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

Ship 1829 mode config #13373

Closed
wants to merge 15 commits into from
5 changes: 5 additions & 0 deletions .changeset/neat-pears-fly.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chainlink": minor
---

#added Mode Sepolia config
stackman27 marked this conversation as resolved.
Show resolved Hide resolved
20 changes: 20 additions & 0 deletions core/chains/evm/config/toml/defaults/Blast_Mainnet.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
ChainID = '81457'
FinalityDepth = 200
FinalityTagEnabled = true
ChainType = 'optimismBedrock'

[GasEstimator]
EIP1559DynamicFees = true
BumpThreshold = 60
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the reasoning behind this huge number?

BumpPercent = 20
Copy link
Collaborator

@dimriou dimriou Jun 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BumpMin = '100 wei'
PriceMax = '120 gwei'
LimitDefault = 8000000
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The fallback value is 500k, why do we set 8m here?

FeeCapDefault = '120 gwei'

[HeadTracker]
HistoryDepth = 300
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

HistoryDepth is no longer needed to be larger than FinalityDepth #13494 . Perhaps we want to set this to something smaller?


[NodePool]
PollFailureThreshold = 2
PollInterval = '3s'
20 changes: 20 additions & 0 deletions core/chains/evm/config/toml/defaults/Blast_Sepolia.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
ChainID = '168587773'
FinalityDepth = 200
FinalityTagEnabled = true
ChainType = 'optimismBedrock'

[GasEstimator]
EIP1559DynamicFees = true
BumpThreshold = 60
BumpPercent = 20
BumpMin = '100 wei'
PriceMax = '120 gwei'
LimitDefault = 8000000
FeeCapDefault = '120 gwei'

[HeadTracker]
HistoryDepth = 300

[NodePool]
PollFailureThreshold = 2
PollInterval = '3s'
20 changes: 20 additions & 0 deletions core/chains/evm/config/toml/defaults/Mode_Mainnet.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
ChainID = '34443'
FinalityDepth = 200
FinalityTagEnabled = true
ChainType = 'optimismBedrock'

[GasEstimator]
EIP1559DynamicFees = true
BumpThreshold = 60
BumpPercent = 20
BumpMin = '100 wei'
PriceMax = '120 gwei'
LimitDefault = 8000000
FeeCapDefault = '120 gwei'

[HeadTracker]
HistoryDepth = 300

[NodePool]
PollFailureThreshold = 2
PollInterval = '3s'
20 changes: 20 additions & 0 deletions core/chains/evm/config/toml/defaults/Mode_Sepolia.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
ChainID = '919'
FinalityDepth = 200
FinalityTagEnabled = true
ChainType = 'optimismBedrock'

[GasEstimator]
EIP1559DynamicFees = true
BumpThreshold = 60
BumpPercent = 20
BumpMin = '100 wei'
PriceMax = '120 gwei'
LimitDefault = 8000000
FeeCapDefault = '120 gwei'

[HeadTracker]
HistoryDepth = 300

[NodePool]
PollFailureThreshold = 2
PollInterval = '3s'
Loading
Loading