Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | import { ExchangeWithdrawalWarning } from '@components/testnet/exchange-withdrawal-warning'; import { useAnalytics } from '@hooks/use-analytics'; import { Box, Button, color, Flex, Text, useClipboard } from '@stacks/ui'; import { isTestnet } from '@utils/network-utils'; import { HomeSelectors } from 'app/tests/features/home.selectors'; import React, { FC } from 'react'; interface AddressDisplayerProps { address: string; } export const AddressDisplayer: FC<AddressDisplayerProps> = props => { const { address } = props; const { hasCopied, onCopy } = useClipboard(address); const analytics = useAnalytics(); const onCopyTracked = () => { void analytics.track('copy_address_to_clipboard'); onCopy(); }; return ( <Box> {isTestnet() && <ExchangeWithdrawalWarning mt="loose" />} <Text textStyle="body.small.medium" mt="loose" display="block"> Your STX address </Text> <Flex mt="base-tight" justifyContent="center" alignItems="center" border={`1px solid ${color('border')}`} height="48px" borderRadius="6px" width="100%" > <Text color={address ? color('text-title') : color('text-caption')} fontSize="13px" data-test={HomeSelectors.TextStxAddress} {...{ textDecoration: 'italics' }} > {address ? address : `You'll see your address when you've unlocked your wallet`} </Text> </Flex> <Text textStyle="caption" color={color('text-caption')} mt="base-tight"> You do not need a memo to receive STX from elsewhere, such as a cryptocurrency exchange </Text> <Flex justifyContent="center" mt="base-tight" mb="tight"> <Button variant="link" onClick={onCopyTracked}> {hasCopied ? 'Copied' : 'Copy address'} </Button> </Flex> </Box> ); }; |