diff --git a/src/app/components/Tokens/TokenDetails.tsx b/src/app/components/Tokens/TokenDetails.tsx index 25d1c1bcad..994c1046a2 100644 --- a/src/app/components/Tokens/TokenDetails.tsx +++ b/src/app/components/Tokens/TokenDetails.tsx @@ -8,8 +8,9 @@ import { TokenLink } from './TokenLink' import { CopyToClipboard } from '../CopyToClipboard' import { AccountLink } from '../Account/AccountLink' import { DashboardLink } from '../../pages/ParatimeDashboardPage/DashboardLink' -import { LongDataDisplay } from '../LongDataDisplay' import { DelayedContractVerificationInfo } from '../Account/ContractVerificationInfo' +import Box from '@mui/material/Box' +import { COLORS } from '../../../styles/theme/colors' export const TokenDetails: FC<{ isLoading?: boolean @@ -36,6 +37,7 @@ export const TokenDetails: FC<{
{t('common.name')}
+ ({token.symbol})
{t(isMobile ? 'common.smartContract_short' : 'common.smartContract')}
@@ -55,11 +57,10 @@ export const TokenDetails: FC<{
{t('tokens.totalSupply')}
- + {token.total_supply + ? t('tokens.totalSupplyValue', { value: token.total_supply }) + : t('common.missing')}
- -
{t('common.ticker')}
-
{token.symbol}
) }