Skip to content

Commit 312415b

Browse files
committed
address type name feedback
1 parent f52a48b commit 312415b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/gas-fee-controller/src/GasFeeController.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

205205
export 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

211211
const name = 'GasFeeController';
212212

0 commit comments

Comments
 (0)