import { ExternalLink } from '@vegaprotocol/ui-toolkit'; import { t } from '@vegaprotocol/react-helpers'; import { BLOG, DApp, Networks, TOKEN_NEW_MARKET_PROPOSAL, TOKEN_PROPOSALS, useEnvironment, useLinks, } from '@vegaprotocol/environment'; import { ProposedMarkets } from './proposed-markets'; export const WelcomeNoticeDialog = () => { const { VEGA_ENV } = useEnvironment(); const tokenLink = useLinks(DApp.Token); const consoleFairgroundLink = useLinks(DApp.Console, Networks.TESTNET); const isMainnet = VEGA_ENV === Networks.MAINNET; const networkName = isMainnet ? 'mainnet' : 'testnet'; return ( <>

{t('Welcome to Console')}

{t( 'Vega %s is now live, but markets need to be voted for before the can be traded on. In the meantime:', [networkName] )}

); };