@chain-registry/juno 1.0.0 → 1.0.1
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/main/asset_list.js +2 -2
- package/package.json +5 -5
- package/types/index.d.ts +5 -5
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
|
+
## [1.0.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@1.0.0...@chain-registry/juno@1.0.1) (2022-10-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @chain-registry/juno
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [1.0.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/juno@0.13.0...@chain-registry/juno@1.0.0) (2022-09-29)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @chain-registry/juno
|
package/main/asset_list.js
CHANGED
|
@@ -1377,14 +1377,14 @@ var asset_list = {
|
|
|
1377
1377
|
}, {
|
|
1378
1378
|
description: 'pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.',
|
|
1379
1379
|
denom_units: [{
|
|
1380
|
-
denom: 'ibc/
|
|
1380
|
+
denom: 'ibc/BA3EB643F46DD1CB95246A5419CCB3A4BA9BB1A85C589C49F27B4A6BB11AACD1',
|
|
1381
1381
|
exponent: 0,
|
|
1382
1382
|
aliases: ['ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444']
|
|
1383
1383
|
}, {
|
|
1384
1384
|
denom: 'pstake',
|
|
1385
1385
|
exponent: 18
|
|
1386
1386
|
}],
|
|
1387
|
-
base: 'ibc/
|
|
1387
|
+
base: 'ibc/BA3EB643F46DD1CB95246A5419CCB3A4BA9BB1A85C589C49F27B4A6BB11AACD1',
|
|
1388
1388
|
name: 'pSTAKE Finance',
|
|
1389
1389
|
display: 'pstake',
|
|
1390
1390
|
symbol: 'PSTAKE',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Chain Registry info for Juno",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"@babel/plugin-transform-runtime": "7.19.1",
|
|
51
51
|
"@babel/preset-env": "7.19.1",
|
|
52
52
|
"@babel/preset-typescript": "^7.17.12",
|
|
53
|
-
"@chain-registry/utils": "^1.0.
|
|
53
|
+
"@chain-registry/utils": "^1.0.1",
|
|
54
54
|
"@types/jest": "^29.0.2",
|
|
55
55
|
"@typescript-eslint/eslint-plugin": "5.37.0",
|
|
56
56
|
"@typescript-eslint/parser": "5.37.0",
|
|
57
57
|
"babel-core": "7.0.0-bridge.0",
|
|
58
58
|
"babel-jest": "29.0.3",
|
|
59
59
|
"babel-watch": "^7.0.0",
|
|
60
|
-
"chain-registry": "^1.0.
|
|
60
|
+
"chain-registry": "^1.0.1",
|
|
61
61
|
"cross-env": "^7.0.2",
|
|
62
62
|
"eslint": "8.23.1",
|
|
63
63
|
"eslint-config-prettier": "^8.5.0",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
75
|
"@babel/runtime": "^7.19.0",
|
|
76
|
-
"@chain-registry/types": "^0.11.
|
|
76
|
+
"@chain-registry/types": "^0.11.1"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "1dc04b938a9bbfb226dc3f91092c98c2c2d4c15a"
|
|
79
79
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -4,11 +4,11 @@ import chain from './chain';
|
|
|
4
4
|
import testnet from './testnet';
|
|
5
5
|
import testnet_assets from './testnet_assets';
|
|
6
6
|
declare const _default: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
chain: import('@chain-registry/types').Chain;
|
|
8
|
+
assets: import('@chain-registry/types').AssetList;
|
|
9
|
+
asset_list: import('@chain-registry/types').AssetList;
|
|
10
|
+
testnet: import('@chain-registry/types').Chain;
|
|
11
|
+
testnet_assets: import('@chain-registry/types').AssetList;
|
|
12
12
|
};
|
|
13
13
|
export default _default;
|
|
14
14
|
export { asset_list, assets, chain, testnet, testnet_assets };
|