2021-07-09 17:23:45 +02:00
|
|
|
import { useSelector } from 'react-redux';
|
|
|
|
import {
|
|
|
|
getEstimatedGasFeeTimeBounds,
|
|
|
|
getGasEstimateType,
|
|
|
|
getGasFeeEstimates,
|
2021-08-06 01:59:58 +02:00
|
|
|
getIsGasEstimatesLoading,
|
2021-07-09 17:23:45 +02:00
|
|
|
} from '../ducks/metamask/metamask';
|
2021-07-31 02:45:18 +02:00
|
|
|
import { useSafeGasEstimatePolling } from './useSafeGasEstimatePolling';
|
2021-07-09 17:23:45 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @typedef {object} GasEstimates
|
|
|
|
* @property {GasEstimateTypes} gasEstimateType - The type of estimate provided
|
|
|
|
* @property {import(
|
|
|
|
* '@metamask/controllers'
|
|
|
|
* ).GasFeeState['gasFeeEstimates']} gasFeeEstimates - The estimate object
|
|
|
|
* @property {import(
|
|
|
|
* '@metamask/controllers'
|
|
|
|
* ).GasFeeState['estimatedGasFeeTimeBounds']} [estimatedGasFeeTimeBounds] -
|
|
|
|
* estimated time boundaries for fee-market type estimates
|
|
|
|
* @property {boolean} isGasEstimateLoading - indicates whether the gas
|
|
|
|
* estimates are currently loading.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the current gasFeeEstimates from state and begins polling for new
|
|
|
|
* estimates. When this hook is removed from the tree it will signal to the
|
|
|
|
* GasFeeController that it is done requiring new gas estimates. Also checks
|
|
|
|
* the returned gas estimate for validity on the current network.
|
|
|
|
*
|
|
|
|
* @returns {GasFeeEstimates} - GasFeeEstimates object
|
|
|
|
*/
|
|
|
|
export function useGasFeeEstimates() {
|
|
|
|
const gasEstimateType = useSelector(getGasEstimateType);
|
|
|
|
const gasFeeEstimates = useSelector(getGasFeeEstimates);
|
|
|
|
const estimatedGasFeeTimeBounds = useSelector(getEstimatedGasFeeTimeBounds);
|
2021-08-06 01:59:58 +02:00
|
|
|
const isGasEstimatesLoading = useSelector(getIsGasEstimatesLoading);
|
2021-07-31 02:45:18 +02:00
|
|
|
useSafeGasEstimatePolling();
|
2021-07-09 17:23:45 +02:00
|
|
|
|
|
|
|
return {
|
|
|
|
gasFeeEstimates,
|
|
|
|
gasEstimateType,
|
|
|
|
estimatedGasFeeTimeBounds,
|
|
|
|
isGasEstimatesLoading,
|
|
|
|
};
|
|
|
|
}
|