chain-registry 0.3.1 → 0.4.0
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/README.md +14 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.4.0](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.3.1...chain-registry@0.4.0) (2022-08-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package chain-registry
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.3.1](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.3.0...chain-registry@0.3.1) (2022-08-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package chain-registry
|
package/README.md
CHANGED
|
@@ -1,12 +1,23 @@
|
|
|
1
1
|
# chain-registry
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<p align="center" width="100%">
|
|
4
|
+
<img height="90" src="https://user-images.githubusercontent.com/545047/184277736-69fef40f-1991-4c0e-b979-da125cf7fd8f.svg" />
|
|
5
|
+
</p>
|
|
4
6
|
|
|
5
7
|
<p align="center" width="100%">
|
|
8
|
+
|
|
9
|
+
<a href="https://github.com/cosmology-tech/chain-registry/actions/workflows/run-tests.yml">
|
|
10
|
+
<img height="20" src="https://github.com/cosmology-tech/chain-registry/actions/workflows/run-tests.yml/badge.svg" />
|
|
11
|
+
</a>
|
|
12
|
+
|
|
6
13
|
<a href="https://github.com/cosmology-tech/chain-registry/blob/main/LICENSE"><img height="20" src="https://img.shields.io/badge/license-MIT-blue.svg"></a>
|
|
14
|
+
|
|
7
15
|
<a href="https://www.npmjs.com/package/chain-registry"><img height="20" src="https://img.shields.io/github/package-json/v/cosmology-tech/chain-registry?filename=packages%2Fchain-registry%2Fpackage.json"></a>
|
|
8
16
|
</p>
|
|
9
17
|
|
|
18
|
+
The npm package for the Official Cosmos [chain registry](https://github.com/cosmos/chain-registry)
|
|
19
|
+
|
|
20
|
+
|
|
10
21
|
```
|
|
11
22
|
npm install chain-registry
|
|
12
23
|
```
|
|
@@ -23,8 +34,8 @@ console.log(asset);
|
|
|
23
34
|
```
|
|
24
35
|
will output:
|
|
25
36
|
|
|
26
|
-
```
|
|
27
|
-
|
|
37
|
+
```js
|
|
38
|
+
{
|
|
28
39
|
'$schema': '../assetlist.schema.json',
|
|
29
40
|
chain_name: 'osmosis',
|
|
30
41
|
assets: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"@babel/plugin-transform-runtime": "7.18.5",
|
|
51
51
|
"@babel/preset-env": "7.18.2",
|
|
52
52
|
"@babel/preset-typescript": "^7.17.12",
|
|
53
|
-
"@chain-registry/utils": "^0.
|
|
53
|
+
"@chain-registry/utils": "^0.3.0",
|
|
54
54
|
"babel-core": "7.0.0-bridge.0",
|
|
55
55
|
"babel-eslint": "10.1.0",
|
|
56
56
|
"cross-env": "^7.0.2",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@babel/runtime": "^7.18.3"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "60025ec3ae56af03dc7e4217344a915508f4d45a"
|
|
75
75
|
}
|