state/user/hooks#useAddUserToken TypeScript Examples
The following examples show how to use
state/user/hooks#useAddUserToken.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CurrencyRow.tsx From interface-v2 with GNU General Public License v3.0 | 4 votes |
CurrencyRow: React.FC<CurrenyRowProps> = ({
currency,
onSelect,
isSelected,
otherSelected,
style,
isOnSelectedList,
}) => {
const { ethereum } = window as any;
const classes = useStyles();
const { palette } = useTheme();
const { account, chainId } = useActiveWeb3React();
const key = currencyKey(currency);
const usdPrice = useUSDCPrice(currency);
const balance = useCurrencyBalance(account ?? undefined, currency);
const customAdded = useIsUserAddedToken(currency);
const removeToken = useRemoveUserAddedToken();
const addToken = useAddUserToken();
const isMetamask =
ethereum &&
ethereum.isMetaMask &&
Number(ethereum.chainId) === 137 &&
isOnSelectedList;
const addTokenToMetamask = (
tokenAddress: any,
tokenSymbol: any,
tokenDecimals: any,
tokenImage: any,
) => {
if (ethereum) {
ethereum
.request({
method: 'wallet_watchAsset',
params: {
type: 'ERC20', // Initially only supports ERC20, but eventually more!
options: {
address: tokenAddress, // The address that the token is at.
symbol: tokenSymbol, // A ticker symbol or shorthand, up to 5 chars.
decimals: tokenDecimals, // The number of decimals in the token
image: tokenImage, // A string url of the token logo
},
},
})
.catch((error: any) => {
if (error.code === 4001) {
// EIP-1193 userRejectedRequest error
console.log('We can encrypt anything without the key.');
} else {
console.error(error);
}
});
}
};
// only show add or remove buttons if not on selected list
return (
<ListItem
button
style={style}
key={key}
selected={otherSelected || isSelected}
onClick={() => {
if (!isSelected && !otherSelected) onSelect();
}}
>
<Box className={classes.currencyRow}>
{(otherSelected || isSelected) && <TokenSelectedIcon />}
<CurrencyLogo currency={currency} size={'32px'} />
<Box ml={1} height={32}>
<Box display='flex' alignItems='center'>
<Typography variant='body2' className={classes.currencySymbol}>
{currency.symbol}
</Typography>
{isMetamask && currency !== ETHER && (
<Box
style={{ cursor: 'pointer', marginLeft: 2 }}
onClick={(event: any) => {
addTokenToMetamask(
currency.address,
currency.symbol,
currency.decimals,
getTokenLogoURL(currency.address),
);
event.stopPropagation();
}}
>
<PlusHelper text='Add to metamask.' />
</Box>
)}
</Box>
{isOnSelectedList ? (
<Typography variant='caption' className={classes.currencyName}>
{currency.name}
</Typography>
) : (
<Box display='flex' alignItems='center'>
<Typography variant='caption'>
{customAdded ? 'Added by user' : 'Found by address'}
</Typography>
<Box
ml={0.5}
color={palette.primary.main}
onClick={(event) => {
event.stopPropagation();
if (customAdded) {
if (chainId && currency instanceof Token)
removeToken(chainId, currency.address);
} else {
if (currency instanceof Token) addToken(currency);
}
}}
>
<Typography variant='caption'>
{customAdded ? '(Remove)' : '(Add)'}
</Typography>
</Box>
</Box>
)}
</Box>
<Box flex={1}></Box>
<TokenTags currency={currency} />
<Box textAlign='right'>
{balance ? (
<>
<Balance balance={balance} />
<Typography
variant='caption'
style={{ color: palette.text.secondary }}
>
$
{(
Number(balance.toExact()) *
(usdPrice ? Number(usdPrice.toSignificant()) : 0)
).toLocaleString()}
</Typography>
</>
) : account ? (
<CircularProgress size={24} color='secondary' />
) : null}
</Box>
</Box>
</ListItem>
);
}
Example #2
Source File: ImportToken.tsx From glide-frontend with GNU General Public License v3.0 | 4 votes |
function ImportToken({ tokens, handleCurrencySelect }: ImportProps) {
const { chainId } = useActiveWeb3React()
const { t } = useTranslation()
const [confirmed, setConfirmed] = useState(false)
const addToken = useAddUserToken()
// use for showing import source on inactive tokens
const inactiveTokenList = useCombinedInactiveList()
return (
<AutoColumn gap="lg">
<Message variant="warning">
<Text>
{t(
'Anyone can create an ERC-20 token on ESC with any name, including creating fake versions of existing tokens and tokens that claim to represent projects that do not have a token.',
)}
<br />
<br />
{t('If you purchase an arbitrary token, you may be unable to sell it back.')}
</Text>
</Message>
{tokens.map((token) => {
const list = chainId && inactiveTokenList?.[chainId]?.[token.address]?.list
const address = token.address
? `${token.address.substring(0, 6)}...${token.address.substring(token.address.length - 4)}`
: null
return (
<Grid key={token.address} gridTemplateRows="1fr 1fr 1fr" gridGap="4px">
{list !== undefined ? (
<Tag
variant="success"
outline
scale="sm"
startIcon={list.logoURI && <ListLogo logoURI={list.logoURI} size="12px" />}
>
{t('via')} {list.name}
</Tag>
) : (
<Tag variant="failure" outline scale="sm" startIcon={<ErrorIcon color="failure" />}>
{t('Unknown Source')}
</Tag>
)}
<Flex alignItems="center">
<Text mr="8px">{token.name}</Text>
<Text>({token.symbol})</Text>
</Flex>
{chainId && (
<Flex justifyContent="space-between" width="100%">
<Text mr="4px">{address}</Text>
<Link href={getBscScanLink(token.address, 'address', chainId)} external>
({t('View on explorer')})
</Link>
</Flex>
)}
</Grid>
)
})}
<Flex justifyContent="space-between" alignItems="center">
<Flex alignItems="center" onClick={() => setConfirmed(!confirmed)}>
<Checkbox
scale="sm"
name="confirmed"
type="checkbox"
checked={confirmed}
onChange={() => setConfirmed(!confirmed)}
/>
<Text ml="8px" style={{ userSelect: 'none' }}>
{t('I understand')}
</Text>
</Flex>
<Button
variant="danger"
disabled={!confirmed}
onClick={() => {
tokens.map((token) => addToken(token))
if (handleCurrencySelect) {
handleCurrencySelect(tokens[0])
}
}}
className=".token-dismiss-button"
>
{t('Import')}
</Button>
</Flex>
</AutoColumn>
)
}
Example #3
Source File: ImportToken.tsx From forward.swaps with GNU General Public License v3.0 | 4 votes |
export function ImportToken({ tokens, onBack, onDismiss, handleCurrencySelect }: ImportProps) {
const theme = useTheme()
const { chainId } = useActiveWeb3React()
const [confirmed, setConfirmed] = useState(false)
const addToken = useAddUserToken()
// use for showing import source on inactive tokens
const inactiveTokenList = useCombinedInactiveList()
// higher warning severity if either is not on a list
const fromLists =
(chainId && inactiveTokenList?.[chainId]?.[tokens[0]?.address]?.list) ||
(chainId && inactiveTokenList?.[chainId]?.[tokens[1]?.address]?.list)
return (
<Wrapper>
<PaddedColumn gap="14px" style={{ width: '100%', flex: '1 1' }}>
<RowBetween>
{onBack ? <ArrowLeft style={{ cursor: 'pointer' }} onClick={onBack} /> : <div></div>}
<TYPE.mediumHeader>Import {tokens.length > 1 ? 'Tokens' : 'Token'}</TYPE.mediumHeader>
{onDismiss ? <CloseIcon onClick={onDismiss} /> : <div></div>}
</RowBetween>
</PaddedColumn>
<SectionBreak />
<PaddedColumn gap="md">
{tokens.map(token => {
const list = chainId && inactiveTokenList?.[chainId]?.[token.address]?.list
return (
<Card backgroundColor={theme.bg2} key={'import' + token.address} className=".token-warning-container">
<AutoColumn gap="10px">
<AutoRow align="center">
<CurrencyLogo currency={token} size={'24px'} />
<TYPE.body ml="8px" mr="8px" fontWeight={500}>
{token.symbol}
</TYPE.body>
<TYPE.darkGray fontWeight={300}>{token.name}</TYPE.darkGray>
</AutoRow>
{chainId && (
<ExternalLink href={getEtherscanLink(chainId, token.address, 'address')}>
<AddressText>{token.address}</AddressText>
</ExternalLink>
)}
{list !== undefined ? (
<RowFixed>
{list.logoURI && <ListLogo logoURI={list.logoURI} size="12px" />}
<TYPE.small ml="6px" color={theme.text3}>
via {list.name}
</TYPE.small>
</RowFixed>
) : (
<WarningWrapper borderRadius="4px" padding="4px" highWarning={true}>
<RowFixed>
<AlertTriangle stroke={theme.red1} size="10px" />
<TYPE.body color={theme.red1} ml="4px" fontSize="10px" fontWeight={500}>
Unkown Source
</TYPE.body>
</RowFixed>
</WarningWrapper>
)}
</AutoColumn>
</Card>
)
})}
<Card
style={{ backgroundColor: fromLists ? transparentize(0.8, theme.yellow2) : transparentize(0.8, theme.red1) }}
>
<AutoColumn justify="center" style={{ textAlign: 'center', gap: '16px', marginBottom: '12px' }}>
<AlertTriangle stroke={fromLists ? theme.yellow2 : theme.red1} size={32} />
<TYPE.body fontWeight={600} fontSize={20} color={fromLists ? theme.yellow2 : theme.red1}>
Trade at your own risk!
</TYPE.body>
</AutoColumn>
<AutoColumn style={{ textAlign: 'center', gap: '16px', marginBottom: '12px' }}>
<TYPE.body fontWeight={400} color={fromLists ? theme.yellow2 : theme.red1}>
Anyone can create a token, including creating fake versions of existing tokens that claim to represent
projects.
</TYPE.body>
<TYPE.body fontWeight={600} color={fromLists ? theme.yellow2 : theme.red1}>
If you purchase this token, you may not be able to sell it back.
</TYPE.body>
</AutoColumn>
<AutoRow justify="center" style={{ cursor: 'pointer' }} onClick={() => setConfirmed(!confirmed)}>
<Checkbox
className=".understand-checkbox"
name="confirmed"
type="checkbox"
checked={confirmed}
onChange={() => setConfirmed(!confirmed)}
/>
<TYPE.body ml="10px" fontSize="16px" color={fromLists ? theme.yellow2 : theme.red1} fontWeight={500}>
I understand
</TYPE.body>
</AutoRow>
</Card>
<ButtonPrimary
disabled={!confirmed}
altDisabledStyle={true}
borderRadius="20px"
padding="10px 1rem"
onClick={() => {
tokens.map(token => addToken(token))
handleCurrencySelect && handleCurrencySelect(tokens[0])
}}
className=".token-dismiss-button"
>
Import
</ButtonPrimary>
</PaddedColumn>
</Wrapper>
)
}
Example #4
Source File: ImportToken.tsx From vvs-ui with GNU General Public License v3.0 | 4 votes |
function ImportToken({ tokens, handleCurrencySelect }: ImportProps) {
const { chainId } = useActiveWeb3React()
const { t } = useTranslation()
const [confirmed, setConfirmed] = useState(false)
const addToken = useAddUserToken()
// use for showing import source on inactive tokens
const inactiveTokenList = useCombinedInactiveList()
return (
<AutoColumn gap="lg">
<Message variant="warning">
<Text>
{t(
'Warning: Anyone can create a CRC20 token on Cronos with any name. Such is the beauty of decentralization. However, beware that anyone can create fake versions of existing tokens or claim to represent projects they do not. So always check the official links and perform your research.',
)}
<br />
<br />
{t('If you purchase any arbitrary token, you may be unable to sell it back. Purchase knowing the risks.')}
</Text>
</Message>
{tokens.map((token) => {
const list = chainId && inactiveTokenList?.[chainId]?.[token.address]?.list
const address = token.address ? `${truncateHash(token.address)}` : null
return (
<Grid key={token.address} gridTemplateRows="1fr 1fr 1fr" gridGap="4px">
{list !== undefined ? (
<Tag
variant="success"
outline
scale="sm"
startIcon={list.logoURI && <ListLogo logoURI={list.logoURI} size="12px" />}
>
{t('via')} {list.name}
</Tag>
) : (
<Tag variant="failure" outline scale="sm" startIcon={<ErrorIcon color="failure" />}>
{t('Unknown Source')}
</Tag>
)}
<Flex alignItems="center">
<Text mr="8px">{token.name}</Text>
<Text>({token.symbol})</Text>
</Flex>
{chainId && (
<Flex justifyContent="space-between" width="100%">
<Text mr="4px">{address}</Text>
<Link href={getExplorerLink(token.address, 'address', chainId)} external>
({t('View on Cronos Explorer')})
</Link>
</Flex>
)}
</Grid>
)
})}
<Flex justifyContent="space-between" alignItems="center">
<Flex alignItems="center" onClick={() => setConfirmed(!confirmed)}>
<Checkbox
scale="sm"
name="confirmed"
type="checkbox"
checked={confirmed}
onChange={() => setConfirmed(!confirmed)}
/>
<Text ml="8px" style={{ userSelect: 'none' }}>
{t('I understand')}
</Text>
</Flex>
<Button
variant="danger"
disabled={!confirmed}
onClick={() => {
tokens.map((token) => addToken(token))
if (handleCurrencySelect) {
handleCurrencySelect(tokens[0])
}
}}
className=".token-dismiss-button"
>
{t('Import')}
</Button>
</Flex>
</AutoColumn>
)
}