eth-chainlist 0.0.2
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/.commitlintrc.json +3 -0
- package/.prettierignore +31 -0
- package/CHANGELOG.md +8 -0
- package/README.md +1 -0
- package/package.json +67 -0
- package/src/data/chain.js +5614 -0
- package/src/index.js +29 -0
package/.prettierignore
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# VSCode & Webstorm history directories
|
|
2
|
+
.history
|
|
3
|
+
.idea
|
|
4
|
+
.vscode
|
|
5
|
+
|
|
6
|
+
# Mac OS
|
|
7
|
+
.DS_Store
|
|
8
|
+
.DS_Store?
|
|
9
|
+
._*
|
|
10
|
+
.Spotlight-V100
|
|
11
|
+
.Trashes
|
|
12
|
+
ehthumbs.db
|
|
13
|
+
Thumbs.db
|
|
14
|
+
|
|
15
|
+
# Git
|
|
16
|
+
.git
|
|
17
|
+
|
|
18
|
+
# node.js
|
|
19
|
+
.yarn
|
|
20
|
+
yarn.lock.sha256sum
|
|
21
|
+
package-lock.json
|
|
22
|
+
node_modules
|
|
23
|
+
npm-debug.log*
|
|
24
|
+
yarn-debug.log*
|
|
25
|
+
yarn-error.log*
|
|
26
|
+
.pnp
|
|
27
|
+
.pnp.js
|
|
28
|
+
|
|
29
|
+
# Other
|
|
30
|
+
chain.json
|
|
31
|
+
src/data/chain.js
|
package/CHANGELOG.md
ADDED
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# eth-chainlist
|
package/package.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "eth-chainlist",
|
|
3
|
+
"version": "0.0.2",
|
|
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
|
+
}
|