mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-30 08:09:15 +01:00
e0953d9f68
wip Documentation improvements for send slice support of EIP1559 Remove console.log in send duck Property lookup safety improvement in selectors/confirm-transaction Add code accidentally removed in rebase Update addTxGasDefaults and _getDefaultGasFees to work with new estimate types, and ensure we correctly handle gas price estimates when on EIP1559 networks (#11615) * Fix typo Remove console.log in send duck * Update addTxGasDefaults and _getDefaultGasFees to work correctly with all new gas fee estimate types * Don't show gas timing support when not on eip1559 compatible network * Hide gas timing component on transaction screen when on a non-1559 network * Improve comments, tests and edge case handling * Ensure eip1559 fees are applied and updated correctly when eip1559 estimate api fails * Lint fix Co-authored-by: Brad Decker <git@braddecker.dev> Remove console.log Handle possible gasEstimateType undefined Remove unnecessary nonce field position change in confirm-page-container-content__details
34 lines
1.0 KiB
JavaScript
34 lines
1.0 KiB
JavaScript
import { useEffect } from 'react';
|
|
import {
|
|
disconnectGasFeeEstimatePoller,
|
|
getGasFeeEstimatesAndStartPolling,
|
|
} from '../store/actions';
|
|
|
|
/**
|
|
* Provides a reusable hook that can be used for safely updating the polling
|
|
* data in the gas fee controller. It makes a request to get estimates and
|
|
* begin polling, keeping track of the poll token for the lifetime of the hook.
|
|
* It then disconnects polling upon unmount. If the hook is unmounted while waiting
|
|
* for `getGasFeeEstimatesAndStartPolling` to resolve, the `active` flag ensures
|
|
* that a call to disconnect happens after promise resolution.
|
|
*/
|
|
export function useSafeGasEstimatePolling() {
|
|
useEffect(() => {
|
|
let active = true;
|
|
let pollToken;
|
|
getGasFeeEstimatesAndStartPolling().then((newPollToken) => {
|
|
if (active) {
|
|
pollToken = newPollToken;
|
|
} else {
|
|
disconnectGasFeeEstimatePoller(newPollToken);
|
|
}
|
|
});
|
|
return () => {
|
|
active = false;
|
|
if (pollToken) {
|
|
disconnectGasFeeEstimatePoller(pollToken);
|
|
}
|
|
};
|
|
}, []);
|
|
}
|