66c18a2b1b
* chore: improve assertions for deposits * test: validation test passing * test: withdrawal tests passing * fix: test failures in CI * fix: lint * chore: add env variables * fix: failing tests due to wallet service not running * ci: pass automatic cnsent * ci: init wallet in other directory * ci: pass home string everywhere * ci: config is already imported * fix: failing deposit and nightly run * ci: port over changes from pr run * fix: failing network param tests * fix: assertion * fix: assertion one last time Co-authored-by: Dexter <dexter.edwards93@gmail.com> |
||
---|---|---|
.. | ||
components | ||
lib | ||
pages | ||
public | ||
specs | ||
.env | ||
.env.devnet | ||
.env.mainnet | ||
.env.stagnet1 | ||
.env.stagnet2 | ||
.env.testnet | ||
.eslintrc.json | ||
client.graphql | ||
index.d.ts | ||
jest.config.js | ||
next-env.d.ts | ||
next.config.js | ||
postcss.config.js | ||
project.json | ||
README.md | ||
sentry.client.config.js | ||
sentry.server.config.js | ||
setup-tests.ts | ||
tailwind.config.js | ||
tsconfig.json | ||
tsconfig.spec.json |
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:
There are a few different configuration options offered for this app:
Flag | Purpose |
---|---|
NX_VEGA_ENV |
The name of the currently connected vega environment |
NX_VEGA_URL |
The GraphQL query endpoint of a Vega data node |
NX_ETHEREUM_CHAIN_ID |
The ID of the Ethereum chain the currently connected Vega Network uses. E.g. Ropsten (3) for testnet |
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