diff --git a/resources/Components/Monitor/index.js b/resources/Components/Monitor/index.js index 27d06ef0b..ad8663f1d 100644 --- a/resources/Components/Monitor/index.js +++ b/resources/Components/Monitor/index.js @@ -161,7 +161,8 @@ class ChainSummaryComponent extends Component { // Optimism specific calculations const price = calculatedFees?.actualFee || gasPrice - const ethBaseFee = this.store('main.networksMeta.ethereum', 1, 'gas.price.fees.nextBaseFee') + const feeMarket = this.store('main.networksMeta.ethereum', 1, 'gas.price.fees') || {} + const { nextBaseFee: ethBaseFee } = feeMarket const optimismEstimate = (serializedTx, l2Limit) => { const l1Estimate = BigNumber(calculateOptimismL1DataFee(serializedTx, ethBaseFee)).shiftedBy(-9)