mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 02:58:09 +01:00
53 lines
1.6 KiB
JavaScript
53 lines
1.6 KiB
JavaScript
import React from 'react';
|
|
|
|
import { COLORS } from '../../../../helpers/constants/design-system';
|
|
import { useGasFeeContext } from '../../../../contexts/gasFee';
|
|
import I18nValue from '../../../ui/i18n-value';
|
|
import Typography from '../../../ui/typography/typography';
|
|
|
|
import StatusSlider from './status-slider';
|
|
|
|
const NetworkStatus = () => {
|
|
const { gasFeeEstimates } = useGasFeeContext();
|
|
|
|
return (
|
|
<div className="network-status">
|
|
<Typography
|
|
color={COLORS.UI4}
|
|
fontSize="10px"
|
|
fontWeight="bold"
|
|
margin={[3, 0]}
|
|
variant="h6"
|
|
>
|
|
<I18nValue messageKey="networkStatus" />
|
|
</Typography>
|
|
<div className="network-status__info">
|
|
<div className="network-status__info__field">
|
|
<span className="network-status__info__field-data">
|
|
{gasFeeEstimates?.estimatedBaseFee &&
|
|
`${gasFeeEstimates?.estimatedBaseFee} GWEI`}
|
|
</span>
|
|
<span className="network-status__info__field-label">Base fee</span>
|
|
</div>
|
|
<div className="network-status__info__separator" />
|
|
<div className="network-status__info__field network-status__info__field--priority-fee">
|
|
<span className="network-status__info__field-data">
|
|
0.5 - 22 GWEI
|
|
</span>
|
|
<span className="network-status__info__field-label">
|
|
Priority fee
|
|
</span>
|
|
</div>
|
|
<div className="network-status__info__separator" />
|
|
<div className="network-status__info__field">
|
|
<StatusSlider />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
NetworkStatus.propTypes = {};
|
|
|
|
export default NetworkStatus;
|