eth-chainlist 0.0.3 → 0.0.4

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 CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ### [0.0.4](https://github.com/poowf/eth-chainlist/compare/v0.0.3...v0.0.4) (2022-02-28)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * use cjs exports instead ([75e0016](https://github.com/poowf/eth-chainlist/commit/75e00164ab54f179e06e5bdf1c992ab521add529))
9
+
10
+
11
+ ### Maintenance
12
+
13
+ * add license ([1d83a8e](https://github.com/poowf/eth-chainlist/commit/1d83a8e4c3b11a1f7a268efb02cb45fdf176d837))
14
+ * update npmignore ([f8ebf1d](https://github.com/poowf/eth-chainlist/commit/f8ebf1d7bb8d0a4b0f2e2fefb9f97e60f27541db))
15
+
3
16
  ### 0.0.3 (2022-02-28)
4
17
 
5
18
 
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Zane J. Chua
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
package/data/chain.js CHANGED
@@ -5611,4 +5611,4 @@ const chainArray = [
5611
5611
  networkId: 6022140761023
5612
5612
  }
5613
5613
  ];
5614
- export default chainArray;
5614
+ module.exports = chainArray;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/.prettierignore DELETED
@@ -1,31 +0,0 @@
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