We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fe724c commit 70b3039Copy full SHA for 70b3039
2 files changed
package.json
@@ -9,11 +9,6 @@
9
"@polymathnetwork/polymath-scripts/polymath-core"
10
]
11
},
12
- "engines": {
13
- "node": "8.11.4",
14
- "yarn": "1.12.3",
15
- "npm": "6.11.3"
16
- },
17
"version": "1.0.0-beta.0",
18
"scripts": {
19
"changelog": "node ./config/changelog.js",
packages/polymath-ui/src/components/EthNetworkWrapper/actions.js
@@ -108,6 +108,7 @@ export const init = (networks: Array<string>) => async (dispatch: Function) => {
108
const network = getNetworkInfo(networkId);
109
const accounts = await web3.eth.getAccounts();
110
111
+ console.log('URL', process.env.REACT_APP_NODE_WS, network.url);
112
// Instantiate Web3 Web Socket
113
web3WS = new Web3(process.env.REACT_APP_NODE_WS || network.url);
114
0 commit comments