/ test_apps / contracts_app / blockchain.json
blockchain.json
 1  {
 2    "development": {
 3      "enabled": true,
 4      "networkType": "custom",
 5      "networkId": "1337",
 6      "isDev": true,
 7      "datadir": ".embark/development/datadir",
 8      "mineWhenNeeded": true,
 9      "nodiscover": true,
10      "maxpeers": 0,
11      "rpcHost": "localhost",
12      "rpcPort": 8545,
13      "rpcCorsDomain": "auto",
14      "targetGasLimit": 8000000,
15      "wsOrigins": "auto",
16      "wsRPC": true,
17      "wsHost": "localhost",
18      "wsPort": 8546
19    },
20    "privatenet": {
21      "networkType": "custom",
22      "networkId": "1337",
23      "isDev": false,
24      "genesisBlock": "privatenet/genesis.json",
25      "datadir": ".embark/privatenet/datadir",
26      "mineWhenNeeded": true,
27      "nodiscover": true,
28      "maxpeers": 0,
29      "rpcHost": "localhost",
30      "rpcPort": 8545,
31      "rpcCorsDomain": "auto",
32      "account": {
33        "password": "privatenet/password"
34      },
35      "targetGasLimit": 8000000,
36      "wsOrigins": "auto",
37      "wsRPC": true,
38      "wsHost": "localhost",
39      "wsPort": 8546
40    },
41    "testnet": {
42      "networkType": "testnet",
43      "rpcHost": "localhost",
44      "rpcPort": 8545,
45      "syncMode": "fast",
46      "account": {
47        "password": "config/ropsten/password"
48      }
49    },
50    "rinkeby": {
51      "networkType": "rinkeby",
52      "rpcHost": "localhost",
53      "rpcPort": 8545,
54      "syncMode": "fast",
55      "account": {
56        "password": "config/rinkeby/password"
57      }
58    },
59    "livenet": {
60      "networkType": "livenet",
61      "rpcHost": "localhost",
62      "rpcPort": 8545,
63      "rpcCorsDomain": "http://localhost:8000",
64      "account": {
65        "password": "livenet/password"
66      }
67    }
68  }