Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

Commit b093aba

Browse files
committed
Add chaintype.ChainZircuit to chaintypes with rollup support
1 parent ecc1fb0 commit b093aba

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

core/chains/evm/gas/rollups/l1_oracle.go

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,15 @@ const (
4444
PollPeriod = 6 * time.Second
4545
)
4646

47-
var supportedChainTypes = []chaintype.ChainType{chaintype.ChainArbitrum, chaintype.ChainOptimismBedrock, chaintype.ChainKroma, chaintype.ChainScroll, chaintype.ChainZkSync, chaintype.ChainMantle}
47+
var supportedChainTypes = []chaintype.ChainType{
48+
chaintype.ChainArbitrum,
49+
chaintype.ChainOptimismBedrock,
50+
chaintype.ChainKroma,
51+
chaintype.ChainScroll,
52+
chaintype.ChainZkSync,
53+
chaintype.ChainMantle,
54+
chaintype.ChainZircuit,
55+
}
4856

4957
func IsRollupWithL1Support(chainType chaintype.ChainType) bool {
5058
return slices.Contains(supportedChainTypes, chainType)

0 commit comments

Comments
 (0)