File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/gas-fee-controller/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -196,17 +196,17 @@ export type FetchGasFeeEstimateOptions = {
196196 * @property gasFeeEstimates - Gas fee estimate data based on new EIP-1559 properties
197197 * @property estimatedGasFeeTimeBounds - Estimates representing the minimum and maximum
198198 */
199- export type GasFeeStateOld =
199+ export type SingleChainGasFeeState =
200200 | GasFeeStateEthGasPrice
201201 | GasFeeStateFeeMarket
202202 | GasFeeStateLegacy
203203 | GasFeeStateNoEstimates ;
204204
205205export type GasFeeEstimatesByChainId = {
206- gasFeeEstimatesByChainId ?: Record < string , GasFeeStateOld > ;
206+ gasFeeEstimatesByChainId ?: Record < string , SingleChainGasFeeState > ;
207207} ;
208208
209- export type GasFeeState = GasFeeEstimatesByChainId & GasFeeStateOld ;
209+ export type GasFeeState = GasFeeEstimatesByChainId & SingleChainGasFeeState ;
210210
211211const name = 'GasFeeController' ;
212212
You can’t perform that action at this time.
0 commit comments