A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
ciphermask/ui/components/app/detected-token/detected-token-address/detected-token-address.js

57 lines
1.5 KiB

import React, { useContext } from 'react';
import PropTypes from 'prop-types';
import { I18nContext } from '../../../../contexts/i18n';
import { useCopyToClipboard } from '../../../../hooks/useCopyToClipboard';
import Box from '../../../ui/box';
import Button from '../../../ui/button';
import Typography from '../../../ui/typography';
import Tooltip from '../../../ui/tooltip';
import {
COLORS,
DISPLAY,
TYPOGRAPHY,
} from '../../../../helpers/constants/design-system';
import { shortenAddress } from '../../../../helpers/utils/util';
const DetectedTokenAddress = ({ address }) => {
const t = useContext(I18nContext);
const [copied, handleCopy] = useCopyToClipboard();
return (
<Box display={DISPLAY.INLINE_FLEX} className="detected-token-address">
<Typography variant={TYPOGRAPHY.H7} color={COLORS.TEXT_DEFAULT}>
{`${t('tokenAddress')}:`}
</Typography>
<Typography
variant={TYPOGRAPHY.H7}
color={COLORS.PRIMARY_DEFAULT}
margin={[1, 2]}
>
{shortenAddress(address)}
</Typography>
<Tooltip
position="bottom"
title={copied ? t('copiedExclamation') : t('copyToClipboard')}
>
<Button
type="link"
className="detected-token-address__copy-link"
onClick={() => {
handleCopy(address);
}}
>
<i className="fa fa-copy" />
</Button>
</Tooltip>
</Box>
);
};
DetectedTokenAddress.propTypes = {
address: PropTypes.string,
};
export default DetectedTokenAddress;