diff --git a/packages/gas-fee-controller/src/GasFeeController.ts b/packages/gas-fee-controller/src/GasFeeController.ts index 6b687226d7d..a81f77dff32 100644 --- a/packages/gas-fee-controller/src/GasFeeController.ts +++ b/packages/gas-fee-controller/src/GasFeeController.ts @@ -196,17 +196,17 @@ export type FetchGasFeeEstimateOptions = { * @property gasFeeEstimates - Gas fee estimate data based on new EIP-1559 properties * @property estimatedGasFeeTimeBounds - Estimates representing the minimum and maximum */ -export type GasFeeStateOld = +export type SingleChainGasFeeState = | GasFeeStateEthGasPrice | GasFeeStateFeeMarket | GasFeeStateLegacy | GasFeeStateNoEstimates; export type GasFeeEstimatesByChainId = { - gasFeeEstimatesByChainId?: Record; + gasFeeEstimatesByChainId?: Record; }; -export type GasFeeState = GasFeeEstimatesByChainId & GasFeeStateOld; +export type GasFeeState = GasFeeEstimatesByChainId & SingleChainGasFeeState; const name = 'GasFeeController';