10 lines
388 B
TypeScript
10 lines
388 B
TypeScript
import { t } from '@vegaprotocol/i18n';
|
|
export const THROTTLE_UPDATE_TIME = 500;
|
|
export const RISK_ACCEPTED_KEY = 'vega_risk_accepted';
|
|
export const MAINNET_WELCOME_HEADER = t(
|
|
'Trade cash settled futures on the fully decentralised Vega network.'
|
|
);
|
|
export const TESTNET_WELCOME_HEADER = t(
|
|
'Try out trading cash settled futures on the fully decentralised Vega network (Testnet).'
|
|
);
|