vega-frontend-monorepo/apps/trading
m.ray bbdc64582a
feat(#2465): vega-pink across frontend-monorepo (#2476)
* feat(#2465): change red to vega pink

* feat(#2465): change red to vega pink part 2

* fix: update vega.red to vega.pink

* feat: color the charts

* feat: color the charts

* feat: color the charts

* fix: use dark pink and green

* fix: use dark pink and green

* feat(#2467): color long/short toggle and place order button

* fix: colors wick showing within candle

* fix: remove opacity from chart

* fix: use vega dark pink and green for vol cell

* fix: toggle and button colors

* feat(#2465): toggle peer checked text white

* fix: add liquidity supplied gap-2 in tooltip data grid

* fix: add indicator temporarily

* chore: update colors

* chore: update from x-dark to vega-x

* fix: rename symbols

* chore: update sell candles to only use stroke as they are solidly filled

* fix: remove use state

* fix: remove network account types

Co-authored-by: Matthew Russell <mattrussell36@gmail.com>
2023-01-06 16:58:55 +00:00
..
assets feat(1784): maintenance page (#2505) 2023-01-04 13:45:50 +01:00
client-pages feat(#2465): vega-pink across frontend-monorepo (#2476) 2023-01-06 16:58:55 +00:00
components feat(#2465): vega-pink across frontend-monorepo (#2476) 2023-01-06 16:58:55 +00:00
lib feat: propose network parameter change link (578) (#2174) 2022-11-22 11:52:31 +01:00
pages feat(#2465): vega-pink across frontend-monorepo (#2476) 2023-01-06 16:58:55 +00:00
public Create a Mono-repo for DeFiUI + ui toolkit using nx 2022-02-11 15:02:11 +01:00
stores chore: redirect to last visited market instead first from the list (#2489) 2023-01-02 17:01:06 +01:00
.env chore: update explorer stagnet3 links (#2227) 2022-11-24 15:48:39 -08:00
.env.devnet chore: add vega_docs_url to all trading envs (#2079) 2022-11-15 14:47:49 +00:00
.env.mainnet chore: add vega_docs_url to all trading envs (#2079) 2022-11-15 14:47:49 +00:00
.env.sandbox fix: remove NX_VEGA_URL from trading console (#2042) 2022-11-11 17:48:58 +00:00
.env.stagnet1 chore: add vega_docs_url to all trading envs (#2079) 2022-11-15 14:47:49 +00:00
.env.stagnet3 chore: update explorer stagnet3 links (#2227) 2022-11-24 15:48:39 -08:00
.env.testnet chore: add vega_docs_url to all trading envs (#2079) 2022-11-15 14:47:49 +00:00
.eslintrc.json chore: cleanup type gen (#2362) 2022-12-08 21:13:30 +00: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(#927) design update (#1201) 2022-08-30 21:35:46 -07: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: revert "always prefix static assets with dot (#1615)" 2022-10-04 14:55:40 -07:00
postcss.config.js Extract tailwindcss config to libs 2022-02-23 16:29:07 -08:00
project.json chore: add custom export executor for next app (#1999) 2022-11-08 18:59:49 -08:00
README.md chore: remove stagnet1, fix env vars for api endpoints (#1163) 2022-08-25 17:07:27 -07:00
sentry.client.config.js Feat/dockerize frontends (#388) 2022-06-13 15:39:17 +01:00
sentry.server.config.js Feat/dockerize frontends (#388) 2022-06-13 15:39:17 +01:00
setup-tests.ts feat(2146): adjust and refactor welcome dialogs (#2384) 2022-12-13 14:31:28 +01:00
tailwind.config.js chore(#1873): trading hash router (#1921) 2022-11-08 08:23:38 +01: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 explorer

Configuration

Example configurations are provided here:

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

yarn nx run token:serve --env={env} # e.g. stagnet3

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