Skip to content

Commit 3196119

Browse files
Merge pull request #17 from torusresearch/feat/infura-v3
Use infura v3
2 parents cec57da + c66fb63 commit 3196119

10 files changed

+797
-521
lines changed

.env.development

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
INFURA_PROJECT_ID=YOUR_INFURA_PROJECT_ID

.eslintrc.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"plugin:mocha/recommended",
1313
"prettier"
1414
],
15-
"plugins": ["prettier", "babel", "standard", "promise", "import", "flowtype", "standard", "simple-import-sort", "mocha"],
15+
"plugins": ["prettier", "babel", "promise", "import", "flowtype", "simple-import-sort", "mocha"],
1616
"parser": "babel-eslint",
1717
"parserOptions": {
1818
"sourceType": "module",

.mocharc.yaml

-2
This file was deleted.

.mocharc.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
require:
2+
- "@babel/register"
3+
- "dotenv/config"
4+
timeout: 0

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"airbnb-base",
1313
"prettier"
1414
],
15-
"plugins": ["prettier", "babel", "standard", "promise", "import", "flowtype", "standard", "simple-import-sort"],
15+
"plugins": ["prettier", "babel", "promise", "import", "flowtype", "simple-import-sort"],
1616
"parser": "babel-eslint",
1717
"parserOptions": {
1818
"sourceType": "module",

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -84,3 +84,7 @@ fetchNodeDetails.getNodeDetails().then((nodeInfo) => console.log(nodeInfo));
8484

8585
- This package requires a peer dependency of `@babel/runtime`
8686
- Node 10+
87+
88+
89+
## Local Development
90+
Requires a .env file with the parameters in .env.development

package-lock.json

+769-508
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -21,36 +21,36 @@
2121
"@babel/runtime": "7.x"
2222
},
2323
"dependencies": {
24-
"web3-eth-contract": "^1.3.0",
25-
"web3-utils": "^1.3.0"
24+
"web3-eth-contract": "^1.3.1",
25+
"web3-utils": "^1.3.1"
2626
},
2727
"devDependencies": {
2828
"@babel/cli": "^7.12.10",
2929
"@babel/core": "^7.12.10",
3030
"@babel/plugin-proposal-class-properties": "^7.12.1",
3131
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
3232
"@babel/plugin-transform-runtime": "^7.12.10",
33-
"@babel/preset-env": "^7.12.10",
33+
"@babel/preset-env": "^7.12.11",
3434
"@babel/register": "^7.12.10",
3535
"@babel/runtime-corejs3": "^7.12.5",
3636
"babel-eslint": "^10.1.0",
3737
"babel-loader": "^8.2.2",
3838
"cross-env": "^7.0.3",
39-
"eslint": "^7.15.0",
39+
"dotenv": "^8.2.0",
40+
"eslint": "^7.17.0",
4041
"eslint-config-airbnb-base": "^14.2.1",
41-
"eslint-config-prettier": "^7.0.0",
42+
"eslint-config-prettier": "^7.1.0",
4243
"eslint-config-standard": "^16.0.2",
4344
"eslint-plugin-babel": "^5.3.1",
4445
"eslint-plugin-flowtype": "^5.2.0",
4546
"eslint-plugin-import": "^2.22.1",
4647
"eslint-plugin-mocha": "^8.0.0",
4748
"eslint-plugin-node": "^11.1.0",
48-
"eslint-plugin-prettier": "^3.3.0",
49+
"eslint-plugin-prettier": "^3.3.1",
4950
"eslint-plugin-promise": "^4.2.1",
5051
"eslint-plugin-simple-import-sort": "^7.0.0",
51-
"eslint-plugin-standard": "^4.1.0",
5252
"eslint-webpack-plugin": "^2.4.1",
53-
"husky": "^4.3.6",
53+
"husky": "^4.3.7",
5454
"lint-staged": "^10.5.3",
5555
"mocha": "^8.2.1",
5656
"parallel-webpack": "^2.6.0",

src/nodeDetailManager.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import { toHex } from "web3-utils";
33

44
import { abi } from "./abi.json";
55

6+
const { INFURA_PROJECT_ID } = process.env;
7+
68
class NodeDetailManager {
79
_currentEpoch = "19";
810

@@ -65,7 +67,7 @@ class NodeDetailManager {
6567
const localUrl = new URL(network);
6668
url = localUrl.href;
6769
} catch (_) {
68-
url = `https://api.infura.io/v1/jsonrpc/${network}`;
70+
url = `https://${network}.infura.io/v3/${INFURA_PROJECT_ID}`;
6971
}
7072
Web3EthContract.setProvider(url);
7173
this.nodeListContract = new Web3EthContract(abi, proxyAddress);

webpack.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
const path = require("path");
22
const ESLintPlugin = require("eslint-webpack-plugin");
3+
const { EnvironmentPlugin } = require("webpack");
4+
5+
require("dotenv").config({ path: ".env" });
6+
37
const pkg = require("./package.json");
48

59
const pkgName = "fetchNodeDetails";
@@ -27,6 +31,7 @@ const baseConfig = {
2731
module: {
2832
rules: [],
2933
},
34+
plugins: [new EnvironmentPlugin(["INFURA_PROJECT_ID"])],
3035
};
3136

3237
const optimization = {
@@ -93,6 +98,7 @@ const cjsBundledConfig = {
9398
rules: [babelLoader],
9499
},
95100
plugins: [
101+
...baseConfig.plugins,
96102
new ESLintPlugin({
97103
files: "src",
98104
}),

0 commit comments

Comments
 (0)