vega-frontend-monorepo/apps/trading
2024-01-18 13:20:58 +00:00
..
__mocks__ feat(trading): use i18next (#5238) 2023-11-15 19:10:39 -08:00
assets feat(trading): metadata console (#4515) 2023-08-11 16:12:43 +00:00
client-pages fix(trading): use No trading instead of Trading terminated (#5624) 2024-01-16 18:30:42 +02:00
components chore(trading): clean up triggering ratio (#5604) 2024-01-16 18:10:32 +01:00
e2e chore(trading): remove waits and tests (#5637) 2024-01-18 13:20:58 +00:00
lib feat(wallet): disconnect if wallet unreachable (#5501) 2023-12-18 10:39:18 +00:00
pages feat(trading): activity streaks, reward hoarder bonus and active rewards (#5491) 2024-01-05 11:16:59 +00:00
public feat(trading): activity streaks, reward hoarder bonus and active rewards (#5491) 2024-01-05 11:16:59 +00:00
stores chore(trading): 4349 delayed telemetry opt in (#4642) 2023-09-01 09:00:20 +00:00
.env feat(trading): competition feature flag and team page (#5549) 2023-12-29 15:50:51 +00:00
.env.capsule feat(trading): referrals (Mk1) (#4816) 2023-09-21 14:25:19 +01:00
.env.devnet feat(trading): ethereum oracle spec in oracle panels (#4914) 2023-10-02 17:48:12 +01:00
.env.mainnet chore(trading): enable trading view on mainnet (#5628) 2024-01-16 18:16:58 +00:00
.env.mainnet-mirror feat(trading): referrals (Mk1) (#4816) 2023-09-21 14:25:19 +01:00
.env.stagnet1 feat(trading): trading view (#5348) 2023-12-12 17:33:41 -08:00
.env.testnet feat(trading): trading view (#5348) 2023-12-12 17:33:41 -08:00
.env.validators-testnet feat(trading): referrals (Mk1) (#4816) 2023-09-21 14:25:19 +01:00
.eslintrc.json chore(trading,governance,explorer): nx migration to latest (#5246) 2023-11-14 15:25:29 +01:00
client.graphql Feat/104 withdraws (#263) 2022-04-26 19:51:39 -07:00
index.d.ts Feat/dockerize frontends (#388) 2022-06-13 15:39:17 +01:00
jest.config.ts feat(trading): trading view (#5348) 2023-12-12 17:33:41 -08:00
next-env.d.ts Create a Mono-repo for DeFiUI + ui toolkit using nx 2022-02-11 15:02:11 +01:00
next.config.js chore(trading): add git hash and tag into settings view (#5207) 2023-11-13 21:17:17 -08:00
postcss.config.js Extract tailwindcss config to libs 2022-02-23 16:29:07 -08:00
project.json chore(ci): remove unused netlify configs (#5278) 2023-11-15 13:40:26 -08:00
README.md chore(trading): merge main back in develop (#5597) 2024-01-10 10:31:15 +00:00
sentry.client.config.js chore(react-helpers,utils,logger): create logger lib and move sentry/logger utils there (#3990) 2023-06-06 14:10:03 +01:00
sentry.server.config.js Feat/dockerize frontends (#388) 2022-06-13 15:39:17 +01:00
setup-tests.ts feat(trading): use i18next (#5238) 2023-11-15 19:10:39 -08:00
tailwind.config.js feat(trading): referrals (Mk2), referrals stats, apply preview (#5021) 2023-10-23 16:57:18 +02:00
tsconfig.json feat: toast component (1677) (#1998) 2022-11-15 15:26:13 +01:00
tsconfig.spec.json chore: add build-spec targets and execute on affected apps and libs on CI (#1745) 2022-10-25 09:41:16 +02:00

Trading

Development

First copy the configuration of the application you are starting:

cp .env.[environment] .env.local

Starting the app:

yarn nx serve trading

Configuration

Example configurations are provided here:

For convenience, you can boot the app injecting one of the configurations above by running:

yarn env-cmd -f .\apps\trading\.env.{env} yarn nx run trading:serve # e.g. stagnet1

There are a few different configuration options offered for this app:

The network configuration for the app

Flag Purpose
NX_VEGA_ENV The name of the currently connected vega environment
NX_VEGA_CONFIG_URL The network configuration for the app
NX_VEGA_URL The GraphQL query endpoint of a Vega data node
NX_ETHEREUM_PROVIDER_URL The Ethereum Provider URL for getting data from the Ethereum network, for example Infura or a local node
NX_ETHERSCAN_URL The Etherscan URL to link Ethereum transactions to

Testing

To run the minimal set of unit tests, run the following:

yarn nx test trading

To run the UI automation tests with a mocked API, run:

yarn nx run trading-e2e:e2e

To run tests with market sim please read the readme.