mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
38 lines
893 B
JavaScript
38 lines
893 B
JavaScript
import React, { createContext, useContext } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { useGasFeeInputs } from '../hooks/gasFeeInput/useGasFeeInputs';
|
|
|
|
export const GasFeeContext = createContext({});
|
|
|
|
export const GasFeeContextProvider = ({
|
|
children,
|
|
defaultEstimateToUse,
|
|
transaction,
|
|
minimumGasLimit,
|
|
editGasMode,
|
|
}) => {
|
|
const gasFeeDetails = useGasFeeInputs(
|
|
defaultEstimateToUse,
|
|
transaction,
|
|
minimumGasLimit,
|
|
editGasMode,
|
|
);
|
|
return (
|
|
<GasFeeContext.Provider value={gasFeeDetails}>
|
|
{children}
|
|
</GasFeeContext.Provider>
|
|
);
|
|
};
|
|
|
|
export function useGasFeeContext() {
|
|
return useContext(GasFeeContext);
|
|
}
|
|
|
|
GasFeeContextProvider.propTypes = {
|
|
children: PropTypes.node.isRequired,
|
|
defaultEstimateToUse: PropTypes.string,
|
|
transaction: PropTypes.object,
|
|
minimumGasLimit: PropTypes.string,
|
|
editGasMode: PropTypes.string,
|
|
};
|