mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 04:20:53 +01:00
79b08fb803
Refactoring useGasFeeInputs hook
18 lines
480 B
JavaScript
18 lines
480 B
JavaScript
import { GAS_ESTIMATE_TYPES } from '../../../shared/constants/gas';
|
|
|
|
export function getGasFeeEstimate(
|
|
field,
|
|
gasFeeEstimates,
|
|
gasEstimateType,
|
|
estimateToUse,
|
|
fallback = '0',
|
|
) {
|
|
if (gasEstimateType === GAS_ESTIMATE_TYPES.FEE_MARKET) {
|
|
return gasFeeEstimates?.[estimateToUse]?.[field] ?? String(fallback);
|
|
}
|
|
return String(fallback);
|
|
}
|
|
|
|
export const feeParamsAreCustom = (transaction) =>
|
|
!transaction?.userFeeLevel || transaction?.userFeeLevel === 'custom';
|