Skip to content

Commit

Permalink
Fix Metis chainType in core config (#16024)
Browse files Browse the repository at this point in the history
* metis ct

* fixed mainnet too

* added chainset
  • Loading branch information
stackman27 authored Jan 22, 2025
1 parent cb1c4ed commit c90c3ef
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .changeset/mean-pianos-train.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"chainlink": minor
---

#nops change chainType from metis to optimismBedrock
1 change: 0 additions & 1 deletion ccip/config/evm/Metis_Mainnet.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Metis is an L2 chain based on Optimism.
ChainID = '1088'
ChainType = 'optimismBedrock'
# Sequencer offers absolute finality
# High variation on finality depth triggered a commitee to investigate
# and set 500 as a secure finality depth.
Expand Down
1 change: 0 additions & 1 deletion ccip/config/evm/Metis_Sepolia.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
ChainID = '59902'
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
Expand Down
2 changes: 1 addition & 1 deletion core/chains/evm/config/toml/defaults/Metis_Mainnet.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Metis is an L2 chain based on Optimism.
ChainID = '1088'
ChainType = 'metis'
ChainType = 'optimismBedrock'
# Sequencer offers absolute finality
FinalityDepth = 10
FinalityTagEnabled = true
Expand Down
2 changes: 1 addition & 1 deletion core/chains/evm/config/toml/defaults/Metis_Sepolia.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ChainID = '59902'
ChainType = 'metis'
ChainType = 'optimismBedrock'
FinalityDepth = 10
FinalityTagEnabled = true
MinIncomingConfirmations = 1
Expand Down
4 changes: 2 additions & 2 deletions docs/CONFIG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6064,7 +6064,7 @@ GasLimitDefault = 400000
AutoCreateKey = true
BlockBackfillDepth = 10
BlockBackfillSkip = false
ChainType = 'metis'
ChainType = 'optimismBedrock'
FinalityDepth = 10
FinalityTagEnabled = true
LogBackfillBatchSize = 1000
Expand Down Expand Up @@ -10457,7 +10457,7 @@ GasLimitDefault = 400000
AutoCreateKey = true
BlockBackfillDepth = 10
BlockBackfillSkip = false
ChainType = 'metis'
ChainType = 'optimismBedrock'
FinalityDepth = 10
FinalityTagEnabled = true
LogBackfillBatchSize = 1000
Expand Down

0 comments on commit c90c3ef

Please sign in to comment.