eth-chainlist 0.0.4 → 0.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/package.json +67 -67
- package/data/chain.js +0 -5614
- package/index.js +0 -29
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.5 (2022-11-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* make husky hooks executable ([8563681](https://github.com/poowf/eth-chainlist/commit/8563681945e6122006599a7d15be54f696f961b2))
|
|
9
|
+
* update chain data ([6c0bf2e](https://github.com/poowf/eth-chainlist/commit/6c0bf2e7b8338f3fae6e9e2c2d17e36370e01e63))
|
|
10
|
+
|
|
3
11
|
### [0.0.4](https://github.com/poowf/eth-chainlist/compare/v0.0.3...v0.0.4) (2022-02-28)
|
|
4
12
|
|
|
5
13
|
|
package/package.json
CHANGED
|
@@ -1,67 +1,67 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "eth-chainlist",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "List of EVM Chains",
|
|
5
|
-
"main": "index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "cp -r src/* ./",
|
|
8
|
-
"lint": "eslint --ignore-path .gitignore . --ext .js --ext .jsx --ext .ts --ext .tsx",
|
|
9
|
-
"format": "prettier \"./**/*.+(ts|js|tsx|jsx)\" --write",
|
|
10
|
-
"update-chain": "node scripts/update.js",
|
|
11
|
-
"release": "standard-version",
|
|
12
|
-
"pre-commit": "lint-staged",
|
|
13
|
-
"commit": "cz",
|
|
14
|
-
"prepare": "husky install"
|
|
15
|
-
},
|
|
16
|
-
"lint-staged": {
|
|
17
|
-
"./**/*.{ts,js,tsx,jsx}": [
|
|
18
|
-
"yarn lint --fix",
|
|
19
|
-
"yarn format"
|
|
20
|
-
]
|
|
21
|
-
},
|
|
22
|
-
"devDependencies": {
|
|
23
|
-
"@commitlint/cli": "^13.1.0",
|
|
24
|
-
"@commitlint/config-conventional": "^13.1.0",
|
|
25
|
-
"cz-conventional-changelog": "^3.3.0",
|
|
26
|
-
"eslint": "^7.32.0",
|
|
27
|
-
"eslint-config-prettier": "^8.3.0",
|
|
28
|
-
"eslint-config-semistandard": "^16.0.0",
|
|
29
|
-
"eslint-config-standard": "^16.0.3",
|
|
30
|
-
"eslint-plugin-import": "^2.25.4",
|
|
31
|
-
"eslint-plugin-node": "^11.1.0",
|
|
32
|
-
"eslint-plugin-prettier": "^4.0.0",
|
|
33
|
-
"eslint-plugin-promise": "^6.0.0",
|
|
34
|
-
"husky": "^7.0.1",
|
|
35
|
-
"lint-staged": "^11.1.1",
|
|
36
|
-
"prettier": "^2.3.2",
|
|
37
|
-
"standard-version": "^9.3.1"
|
|
38
|
-
},
|
|
39
|
-
"config": {
|
|
40
|
-
"commitizen": {
|
|
41
|
-
"path": "cz-conventional-changelog"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"repository": {
|
|
45
|
-
"type": "git",
|
|
46
|
-
"url": "https://github.com/poowf/eth-chainlist"
|
|
47
|
-
},
|
|
48
|
-
"keywords": [
|
|
49
|
-
"eth",
|
|
50
|
-
"evm",
|
|
51
|
-
"chain",
|
|
52
|
-
"eth chain"
|
|
53
|
-
],
|
|
54
|
-
"author": "zanechua",
|
|
55
|
-
"contributors": [
|
|
56
|
-
{
|
|
57
|
-
"name": "Zane J. Chua",
|
|
58
|
-
"email": "hi@zanechua.com",
|
|
59
|
-
"url": "https://zanechua.com"
|
|
60
|
-
}
|
|
61
|
-
],
|
|
62
|
-
"license": "MIT",
|
|
63
|
-
"bugs": {
|
|
64
|
-
"url": "https://github.com/poowf/eth-chainlist/issues"
|
|
65
|
-
},
|
|
66
|
-
"homepage": "https://github.com/poowf/eth-chainlist#readme"
|
|
67
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "eth-chainlist",
|
|
3
|
+
"version": "0.0.5",
|
|
4
|
+
"description": "List of EVM Chains",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "cp -r src/* ./",
|
|
8
|
+
"lint": "eslint --ignore-path .gitignore . --ext .js --ext .jsx --ext .ts --ext .tsx",
|
|
9
|
+
"format": "prettier \"./**/*.+(ts|js|tsx|jsx)\" --write",
|
|
10
|
+
"update-chain": "node scripts/update.js",
|
|
11
|
+
"release": "standard-version",
|
|
12
|
+
"pre-commit": "lint-staged",
|
|
13
|
+
"commit": "cz",
|
|
14
|
+
"prepare": "husky install"
|
|
15
|
+
},
|
|
16
|
+
"lint-staged": {
|
|
17
|
+
"./**/*.{ts,js,tsx,jsx}": [
|
|
18
|
+
"yarn lint --fix",
|
|
19
|
+
"yarn format"
|
|
20
|
+
]
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@commitlint/cli": "^13.1.0",
|
|
24
|
+
"@commitlint/config-conventional": "^13.1.0",
|
|
25
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
26
|
+
"eslint": "^7.32.0",
|
|
27
|
+
"eslint-config-prettier": "^8.3.0",
|
|
28
|
+
"eslint-config-semistandard": "^16.0.0",
|
|
29
|
+
"eslint-config-standard": "^16.0.3",
|
|
30
|
+
"eslint-plugin-import": "^2.25.4",
|
|
31
|
+
"eslint-plugin-node": "^11.1.0",
|
|
32
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
33
|
+
"eslint-plugin-promise": "^6.0.0",
|
|
34
|
+
"husky": "^7.0.1",
|
|
35
|
+
"lint-staged": "^11.1.1",
|
|
36
|
+
"prettier": "^2.3.2",
|
|
37
|
+
"standard-version": "^9.3.1"
|
|
38
|
+
},
|
|
39
|
+
"config": {
|
|
40
|
+
"commitizen": {
|
|
41
|
+
"path": "cz-conventional-changelog"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"repository": {
|
|
45
|
+
"type": "git",
|
|
46
|
+
"url": "https://github.com/poowf/eth-chainlist"
|
|
47
|
+
},
|
|
48
|
+
"keywords": [
|
|
49
|
+
"eth",
|
|
50
|
+
"evm",
|
|
51
|
+
"chain",
|
|
52
|
+
"eth chain"
|
|
53
|
+
],
|
|
54
|
+
"author": "zanechua",
|
|
55
|
+
"contributors": [
|
|
56
|
+
{
|
|
57
|
+
"name": "Zane J. Chua",
|
|
58
|
+
"email": "hi@zanechua.com",
|
|
59
|
+
"url": "https://zanechua.com"
|
|
60
|
+
}
|
|
61
|
+
],
|
|
62
|
+
"license": "MIT",
|
|
63
|
+
"bugs": {
|
|
64
|
+
"url": "https://github.com/poowf/eth-chainlist/issues"
|
|
65
|
+
},
|
|
66
|
+
"homepage": "https://github.com/poowf/eth-chainlist#readme"
|
|
67
|
+
}
|