@chain-registry/assets 0.4.1 → 0.4.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/CHANGELOG.md +8 -0
- package/README.md +39 -0
- package/package.json +2 -2
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.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.4.1...@chain-registry/assets@0.4.2) (2022-08-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @chain-registry/assets
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [0.4.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/assets@0.4.0...@chain-registry/assets@0.4.1) (2022-08-13)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @chain-registry/assets
|
package/README.md
CHANGED
|
@@ -20,4 +20,43 @@ npm install @chain-registry/assets
|
|
|
20
20
|
|
|
21
21
|
```js
|
|
22
22
|
import { ibc_assets } from '@chain-registry/assets';
|
|
23
|
+
const assetList = ibc_assets
|
|
24
|
+
.find(asset => asset.chain_name === 'osmosis');
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Which gives you a list of assets for the `chain_name`:
|
|
28
|
+
|
|
29
|
+
```js
|
|
30
|
+
console.log(assetList.assets);
|
|
31
|
+
|
|
32
|
+
[
|
|
33
|
+
{
|
|
34
|
+
description: "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.",
|
|
35
|
+
denom_units: [ [Object], [Object] ],
|
|
36
|
+
base: 'ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4',
|
|
37
|
+
name: 'Akash Network',
|
|
38
|
+
display: 'akt',
|
|
39
|
+
symbol: 'AKT',
|
|
40
|
+
logo_URIs: {
|
|
41
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png',
|
|
42
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.svg'
|
|
43
|
+
},
|
|
44
|
+
coingecko_id: 'akash-network',
|
|
45
|
+
ibc: { counterparty: [Object], chain: [Object] }
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
description: 'The native token of Axelar',
|
|
49
|
+
denom_units: [ [Object], [Object] ],
|
|
50
|
+
base: 'ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E',
|
|
51
|
+
name: 'Axelar',
|
|
52
|
+
display: 'axl',
|
|
53
|
+
symbol: 'AXL',
|
|
54
|
+
logo_URIs: {
|
|
55
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png',
|
|
56
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.svg'
|
|
57
|
+
},
|
|
58
|
+
coingecko_id: 'axelar-network',
|
|
59
|
+
ibc: { counterparty: [Object], chain: [Object] }
|
|
60
|
+
}
|
|
61
|
+
]
|
|
23
62
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/assets",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Chain Registry Asset Lists",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -77,5 +77,5 @@
|
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@babel/runtime": "^7.18.3"
|
|
79
79
|
},
|
|
80
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "ab3b21afe79d04c56e717b00b22a5f41ae8654ef"
|
|
81
81
|
}
|