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

Ecotone gas price #12584

Merged
merged 12 commits into from
Mar 26, 2024
Prev Previous commit
fix lint
  • Loading branch information
matYang committed Mar 26, 2024
commit 7f10412f173b8b50e2c449f25ecd63dbea906920
2 changes: 2 additions & 0 deletions core/chains/evm/gas/rollups/l1_oracle.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ func NewL1GasOracle(lggr logger.Logger, ethClient ethClient, chainType config.Ch
priceReader = newOPPriceReader(lggr, ethClient, chainType, OPGasOracleAddress)
case config.ChainKroma:
priceReader = newOPPriceReader(lggr, ethClient, chainType, KromaGasOracleAddress)
default:
priceReader = nil
}
return newL1GasOracle(lggr, ethClient, chainType, priceReader)
}
Expand Down
Loading