vega-frontend-monorepo/apps/trading
2023-09-15 15:46:02 +01:00
..
__mocks__ feat(trading): add oracle dialog trigger to oracle banner, display status reas… (#3727) 2023-05-15 16:20:30 +01:00
assets feat(trading): metadata console (#4515) 2023-08-11 16:12:43 +00:00
client-pages chore(trading): get started section for deposit (#4783) 2023-09-15 15:10:38 +01:00
components chore(trading): get started section for deposit (#4783) 2023-09-15 15:10:38 +01:00
lib chore(trading): 4764 remember closed sidebar (#4799) 2023-09-15 13:36:08 +01:00
pages chore(trading): 4764 remember closed sidebar (#4799) 2023-09-15 13:36:08 +01:00
public feat(trading): add fairground texture background to logo (#4474) 2023-08-03 09:28:01 +01:00
stores chore(trading): 4349 delayed telemetry opt in (#4642) 2023-09-01 09:00:20 +00:00
.env chore(trading): get started section for deposit (#4783) 2023-09-15 15:10:38 +01:00
.env.capsule fix: de-polish and fix links to mozilla (#4670) 2023-08-31 14:09:41 +00:00
.env.devnet fix: de-polish and fix links to mozilla (#4670) 2023-08-31 14:09:41 +00:00
.env.mainnet chore: bump version (#4805) 2023-09-15 15:46:02 +01:00
.env.mainnet-mirror chore(trading): update flags for 0.72.14 (#4697) 2023-09-04 18:33:58 -07:00
.env.stagnet1 chore(trading): add oracle proofs url to all envs (#4793) 2023-09-14 13:57:28 -07:00
.env.testnet chore(trading): add oracle proofs url to all envs (#4793) 2023-09-14 13:57:28 -07:00
.env.validators-testnet chore(trading): add oracle proofs url to all envs (#4793) 2023-09-14 13:57:28 -07:00
.eslintrc.json chore(trading): migrate nx to latest version (#4196) 2023-07-04 13:01:25 +02: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 chore(trading): migrate nx to latest version (#4196) 2023-07-04 13:01:25 +02:00
netlify.toml chore: package.json clean-up (#1030) 2022-08-15 13:57:47 +01: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): migrate nx to latest version (#4196) 2023-07-04 13:01:25 +02:00
postcss.config.js Extract tailwindcss config to libs 2022-02-23 16:29:07 -08:00
project.json chore(trading): migrate nx to latest version (#4196) 2023-07-04 13:01:25 +02:00
README.md chore(trading): ignore parse source map warnings, fix trading readme (#4252) 2023-07-11 10:41:54 +01: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: update market data components when they are in view (#2607) 2023-01-16 17:51:30 +00:00
tailwind.config.js chore(trading): migrate nx to latest version (#4196) 2023-07-04 13:01:25 +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