-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathlaunch.json
67 lines (66 loc) · 2.8 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach to Remote",
"port": 9229,
"localRoot": "${workspaceFolder}",
"remoteRoot": "/app",
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/output/**/*"
]
},
{
"type": "node",
"request": "launch",
"name": "Integration Tests",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"cwd": "${workspaceRoot}",
"args": [
"--require", "source-map-support/register",
"output/tests-integration/**/*.js",
"--no-timeouts"
],
// uncomment one of the following and run `docker-compose up --build --force-recreate --abort-on-container-exit parity-dev-node` then you can debug tests against any chain from within VSCode
// ** Local **
// "env": {
// "ETHEREUM_HOST": "localhost",
// "ETHEREUM_PORT": "8545",
// "ETHEREUM_GAS_PRICE_IN_NANOETH": "1",
//// "ETHEREUM_PRIVATE_KEY": "0xe2b0241b73cd78d450f85eca67188fb884e7ebe961f8981814474c500d581952"
// },
// ** Aura **
// "env": {
// "ETHEREUM_HOST": "dev-node-geth-1.1245c996.cont.dockerapp.io",
// "ETHEREUM_PORT": "32770",
// "ETHEREUM_GAS_PRICE_IN_NANOETH": "1",
// "ETHEREUM_PRIVATE_KEY": "0x47f49c399482f73143cadeb2db8938d3f249578bdc64cdcda4ecf1ee535a5c91",
//// "AUGUR_CONTROLLER_ADDRESS": "0xe416b1cf13579c309aa3614cfe172e3b5910760a"
// },
// ** Clique **
// "env": {
// "ETHEREUM_HOST": "dev-node-geth-1.26fbbfb5.cont.dockerapp.io",
// "ETHEREUM_PORT": "32773",
// "ETHEREUM_GAS_PRICE_IN_NANOETH": "1",
// "ETHEREUM_PRIVATE_KEY": "0x47f49c399482f73143cadeb2db8938d3f249578bdc64cdcda4ecf1ee535a5c91",
//// "AUGUR_CONTROLLER_ADDRESS": "0xe416b1cf13579c309aa3614cfe172e3b5910760a"
// },
// ** Rinkeby **
// "env": {
// "ETHEREUM_HOST": "rinkeby.augur.net",
// "ETHEREUM_PORT": "8545",
// "ETHEREUM_GAS_PRICE_IN_NANOETH": "1",
// "ETHEREUM_PRIVATE_KEY": "0xdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeefdeadbeef",
//// "AUGUR_CONTROLLER_ADDRESS": "0x7B51CbD28e4A7Fe6631FFed2Dd3F276F416ebF10"
// },
"protocol": "inspector",
"sourceMaps": true,
"outFiles": [
"${workspaceRoot}/output/**/*"
]
}
]
}