diff --git a/core/chains/evm/gas/rollups/l1_oracle.go b/core/chains/evm/gas/rollups/l1_oracle.go index d3fd5d7538..a9dec743ac 100644 --- a/core/chains/evm/gas/rollups/l1_oracle.go +++ b/core/chains/evm/gas/rollups/l1_oracle.go @@ -44,7 +44,15 @@ const ( PollPeriod = 6 * time.Second ) -var supportedChainTypes = []chaintype.ChainType{chaintype.ChainArbitrum, chaintype.ChainOptimismBedrock, chaintype.ChainKroma, chaintype.ChainScroll, chaintype.ChainZkSync, chaintype.ChainMantle} +var supportedChainTypes = []chaintype.ChainType{ + chaintype.ChainArbitrum, + chaintype.ChainOptimismBedrock, + chaintype.ChainKroma, + chaintype.ChainScroll, + chaintype.ChainZkSync, + chaintype.ChainMantle, + chaintype.ChainZircuit, +} func IsRollupWithL1Support(chainType chaintype.ChainType) bool { return slices.Contains(supportedChainTypes, chainType)