import { useTranslation } from 'react-i18next'; import { useEnvironment } from '@vegaprotocol/network-switcher'; import { useAddAssetSupported } from '../../hooks/use-add-asset-to-wallet'; import vegaVesting from '../../images/vega_vesting.png'; import { AddTokenButtonLink } from '../add-token-button/add-token-button'; import { Callout } from '@vegaprotocol/ui-toolkit'; export const AddLockedTokenAddress = () => { const { t } = useTranslation(); const addSupported = useAddAssetSupported(); const { ADDRESSES } = useEnvironment(); return ( {addSupported ? ( <>


{t('Or')}
) : null}

{t( 'The token address is {{address}}. Hit the add token button in your ERC20 wallet and enter this address.', { address: ADDRESSES.lockedAddress, } )}

); };