mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 06:07:06 +01:00
f8f4397339
When the gas API is down, the logic we use will no longer compute all of the data that the gas API returns in order to reduce the burden on Infura. Specifically, only estimated fees for different priority levels, as well as the latest base fee, will be available; all other data points, such as the latest and historical priority fee range and network stability, will be missing. This commit updates the frontend logic to account for this lack of data by merely hiding the relevant pieces of the UI that would otherwise be shown.
140 lines
3.8 KiB
JavaScript
140 lines
3.8 KiB
JavaScript
import React, { useCallback, useEffect, useState } from 'react';
|
|
import { useSelector } from 'react-redux';
|
|
|
|
import { HIGH_FEE_WARNING_MULTIPLIER } from '../../../../../pages/send/send.constants';
|
|
import {
|
|
EDIT_GAS_MODES,
|
|
PRIORITY_LEVELS,
|
|
} from '../../../../../../shared/constants/gas';
|
|
import { PRIMARY } from '../../../../../helpers/constants/common';
|
|
import { bnGreaterThan, bnLessThan } from '../../../../../helpers/utils/util';
|
|
import { decGWEIToHexWEI } from '../../../../../helpers/utils/conversions.util';
|
|
import { getAdvancedGasFeeValues } from '../../../../../selectors';
|
|
import { useGasFeeContext } from '../../../../../contexts/gasFee';
|
|
import { useI18nContext } from '../../../../../hooks/useI18nContext';
|
|
import { useUserPreferencedCurrency } from '../../../../../hooks/useUserPreferencedCurrency';
|
|
import { useCurrencyDisplay } from '../../../../../hooks/useCurrencyDisplay';
|
|
import Box from '../../../../ui/box';
|
|
import FormField from '../../../../ui/form-field';
|
|
|
|
import { useAdvancedGasFeePopoverContext } from '../../context';
|
|
import AdvancedGasFeeInputSubtext from '../../advanced-gas-fee-input-subtext';
|
|
|
|
const validateBaseFee = (value, gasFeeEstimates, maxPriorityFeePerGas) => {
|
|
if (bnGreaterThan(maxPriorityFeePerGas, value)) {
|
|
return 'editGasMaxBaseFeeGWEIImbalance';
|
|
}
|
|
if (
|
|
gasFeeEstimates?.low &&
|
|
bnLessThan(value, gasFeeEstimates.low.suggestedMaxFeePerGas)
|
|
) {
|
|
return 'editGasMaxBaseFeeLow';
|
|
}
|
|
if (
|
|
gasFeeEstimates?.high &&
|
|
bnGreaterThan(
|
|
value,
|
|
gasFeeEstimates.high.suggestedMaxFeePerGas * HIGH_FEE_WARNING_MULTIPLIER,
|
|
)
|
|
) {
|
|
return 'editGasMaxBaseFeeHigh';
|
|
}
|
|
return null;
|
|
};
|
|
|
|
const BaseFeeInput = () => {
|
|
const t = useI18nContext();
|
|
|
|
const {
|
|
gasFeeEstimates,
|
|
estimateUsed,
|
|
maxFeePerGas,
|
|
editGasMode,
|
|
} = useGasFeeContext();
|
|
const {
|
|
gasLimit,
|
|
maxPriorityFeePerGas,
|
|
setErrorValue,
|
|
setMaxFeePerGas,
|
|
setMaxBaseFee,
|
|
} = useAdvancedGasFeePopoverContext();
|
|
|
|
const {
|
|
estimatedBaseFee,
|
|
historicalBaseFeeRange,
|
|
baseFeeTrend,
|
|
} = gasFeeEstimates;
|
|
const [baseFeeError, setBaseFeeError] = useState();
|
|
const { currency, numberOfDecimals } = useUserPreferencedCurrency(PRIMARY);
|
|
|
|
const advancedGasFeeValues = useSelector(getAdvancedGasFeeValues);
|
|
|
|
const [baseFee, setBaseFee] = useState(() => {
|
|
if (
|
|
estimateUsed !== PRIORITY_LEVELS.CUSTOM &&
|
|
advancedGasFeeValues?.maxBaseFee &&
|
|
editGasMode !== EDIT_GAS_MODES.SWAPS
|
|
) {
|
|
return advancedGasFeeValues.maxBaseFee;
|
|
}
|
|
|
|
return maxFeePerGas;
|
|
});
|
|
|
|
const [baseFeeInPrimaryCurrency] = useCurrencyDisplay(
|
|
decGWEIToHexWEI(baseFee * gasLimit),
|
|
{ currency, numberOfDecimals },
|
|
);
|
|
|
|
const updateBaseFee = useCallback(
|
|
(value) => {
|
|
setBaseFee(value);
|
|
},
|
|
[setBaseFee],
|
|
);
|
|
|
|
useEffect(() => {
|
|
setMaxFeePerGas(baseFee);
|
|
const error = validateBaseFee(
|
|
baseFee,
|
|
gasFeeEstimates,
|
|
maxPriorityFeePerGas,
|
|
);
|
|
|
|
setBaseFeeError(error);
|
|
setErrorValue('maxFeePerGas', error === 'editGasMaxBaseFeeGWEIImbalance');
|
|
setMaxBaseFee(baseFee);
|
|
}, [
|
|
baseFee,
|
|
gasFeeEstimates,
|
|
maxPriorityFeePerGas,
|
|
setBaseFeeError,
|
|
setErrorValue,
|
|
setMaxFeePerGas,
|
|
setMaxBaseFee,
|
|
]);
|
|
|
|
return (
|
|
<Box className="base-fee-input" margin={[0, 2]}>
|
|
<FormField
|
|
dataTestId="base-fee-input"
|
|
error={baseFeeError ? t(baseFeeError) : ''}
|
|
onChange={updateBaseFee}
|
|
titleText={t('maxBaseFee')}
|
|
titleUnit={`(${t('gwei')})`}
|
|
tooltipText={t('advancedBaseGasFeeToolTip')}
|
|
value={baseFee}
|
|
detailText={`≈ ${baseFeeInPrimaryCurrency}`}
|
|
numeric
|
|
/>
|
|
<AdvancedGasFeeInputSubtext
|
|
latest={estimatedBaseFee}
|
|
historical={historicalBaseFeeRange}
|
|
trend={baseFeeTrend}
|
|
/>
|
|
</Box>
|
|
);
|
|
};
|
|
|
|
export default BaseFeeInput;
|