@juno-network/assets 0.5.6 → 0.5.7
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/README.md +32 -0
- package/main/ibc_assets.js +2 -2
- package/module/ibc_assets.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
@@ -22,6 +22,38 @@ npm install @juno-network/assets
|
|
22
22
|
import { chain, assets, ibc_assets } from '@juno-network/assets';
|
23
23
|
```
|
24
24
|
|
25
|
+
```js
|
26
|
+
console.log(ibc_assets);
|
27
|
+
{
|
28
|
+
chain_name: 'juno',
|
29
|
+
assets: [
|
30
|
+
{
|
31
|
+
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.",
|
32
|
+
denom_units: [Array],
|
33
|
+
base: 'ibc/DFC6F33796D5D0075C5FB54A4D7B8E76915ACF434CB1EE2A1BA0BB8334E17C3A',
|
34
|
+
name: 'Akash Network',
|
35
|
+
display: 'akt',
|
36
|
+
symbol: 'AKT',
|
37
|
+
logo_URIs: [Object],
|
38
|
+
coingecko_id: 'akash-network',
|
39
|
+
ibc: [Object]
|
40
|
+
},
|
41
|
+
{
|
42
|
+
description: 'The native token of Axelar',
|
43
|
+
denom_units: [Array],
|
44
|
+
base: 'ibc/EBE900AED8FF6BB2E186B17B066138F647CDD9647EF4FBE2DE6C8D4013A2C990',
|
45
|
+
name: 'Axelar',
|
46
|
+
display: 'axl',
|
47
|
+
symbol: 'AXL',
|
48
|
+
logo_URIs: [Object],
|
49
|
+
coingecko_id: 'axelar-network',
|
50
|
+
ibc: [Object]
|
51
|
+
},
|
52
|
+
// ... more assets
|
53
|
+
]
|
54
|
+
}
|
55
|
+
```
|
56
|
+
|
25
57
|
## Credits
|
26
58
|
|
27
59
|
Built by Cosmology — if you like our tools, please consider delegating to [our validator](https://www.mintscan.io/juno/validators/junovaloper1pr5qgj4jg47lvsnejtfvk78090shvuctgdwdm5)
|
package/main/ibc_assets.js
CHANGED
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
5
5
|
});
|
6
6
|
exports["default"] = void 0;
|
7
|
-
var _default =
|
7
|
+
var _default = {
|
8
8
|
"chain_name": "juno",
|
9
9
|
"assets": [{
|
10
10
|
"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.",
|
@@ -2175,5 +2175,5 @@ var _default = [{
|
|
2175
2175
|
}
|
2176
2176
|
}
|
2177
2177
|
}]
|
2178
|
-
}
|
2178
|
+
};
|
2179
2179
|
exports["default"] = _default;
|
package/module/ibc_assets.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
export default
|
1
|
+
export default {
|
2
2
|
"chain_name": "juno",
|
3
3
|
"assets": [{
|
4
4
|
"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.",
|
@@ -2169,4 +2169,4 @@ export default [{
|
|
2169
2169
|
}
|
2170
2170
|
}
|
2171
2171
|
}]
|
2172
|
-
}
|
2172
|
+
};
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@juno-network/assets",
|
3
|
-
"version": "0.5.
|
3
|
+
"version": "0.5.7",
|
4
4
|
"description": "Chain Registry info for Juno",
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
6
6
|
"homepage": "https://github.com/CosmosContracts/typescript",
|
@@ -77,5 +77,5 @@
|
|
77
77
|
"dependencies": {
|
78
78
|
"@babel/runtime": "^7.18.3"
|
79
79
|
},
|
80
|
-
"gitHead": "
|
80
|
+
"gitHead": "50a7d7a9504c83448029e9fd50e9765a009d211a"
|
81
81
|
}
|