c14e57cfd5
* feat: adjust and refactor welcome dialogs * feat: adjust and refactor welcome dialogs - add int tests * feat: adjust and refactor welcome dialogs - small fixes and imprvments * feat: adjust and refactor welcome dialogs - fix a typo * feat: adjust and refactor welcome dialogs - fix a property name * feat: adjust and refactor welcome dialogs - fix an unit test
11 lines
437 B
TypeScript
11 lines
437 B
TypeScript
import { t } from '@vegaprotocol/react-helpers';
|
|
export const DEBOUNCE_UPDATE_TIME = 500;
|
|
export const EMPTY_MARKET_ID = 'empty';
|
|
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).'
|
|
);
|