@chain-registry/juno 0.5.1 → 0.6.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 +24 -0
- package/README.md +2 -2
- package/{module/ibc_assets.js → main/asset_list.js} +238 -153
- package/main/chain.js +1 -1
- package/main/index.js +9 -9
- package/{main/ibc_assets.js → module/asset_list.js} +231 -160
- package/module/chain.js +1 -1
- package/module/index.js +3 -3
- package/package.json +5 -5
- package/types/asset_list.d.ts +3 -0
- package/types/index.d.ts +3 -3
- package/types/ibc_assets.d.ts +0 -3
package/module/chain.js
CHANGED
|
@@ -123,7 +123,7 @@ const chain = {
|
|
|
123
123
|
}, {
|
|
124
124
|
kind: 'mintscan',
|
|
125
125
|
url: 'https://www.mintscan.io/juno',
|
|
126
|
-
tx_page: 'https://www.mintscan.io/juno/txs
|
|
126
|
+
tx_page: 'https://www.mintscan.io/juno/txs/${txHash}'
|
|
127
127
|
}, {
|
|
128
128
|
kind: 'atomscan',
|
|
129
129
|
url: 'https://atomscan.com/juno',
|
package/module/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
+
import asset_list from './asset_list';
|
|
1
2
|
import assets from './assets';
|
|
2
3
|
import chain from './chain';
|
|
3
|
-
import ibc_assets from './ibc_assets';
|
|
4
4
|
export default {
|
|
5
5
|
chain,
|
|
6
6
|
assets,
|
|
7
|
-
|
|
7
|
+
asset_list
|
|
8
8
|
};
|
|
9
|
-
export { assets, chain
|
|
9
|
+
export { asset_list, assets, chain };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
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",
|
|
@@ -54,14 +54,14 @@
|
|
|
54
54
|
"@babel/plugin-transform-runtime": "7.18.5",
|
|
55
55
|
"@babel/preset-env": "7.18.2",
|
|
56
56
|
"@babel/preset-typescript": "^7.17.12",
|
|
57
|
-
"@chain-registry/utils": "^0.
|
|
57
|
+
"@chain-registry/utils": "^0.4.0",
|
|
58
58
|
"@types/jest": "^28.1.1",
|
|
59
59
|
"@typescript-eslint/eslint-plugin": "5.31.0",
|
|
60
60
|
"@typescript-eslint/parser": "5.31.0",
|
|
61
61
|
"babel-core": "7.0.0-bridge.0",
|
|
62
62
|
"babel-jest": "28.1.1",
|
|
63
63
|
"babel-watch": "^7.0.0",
|
|
64
|
-
"chain-registry": "^0.
|
|
64
|
+
"chain-registry": "^0.7.0",
|
|
65
65
|
"cross-env": "^7.0.2",
|
|
66
66
|
"eslint": "8.20.0",
|
|
67
67
|
"eslint-config-prettier": "^8.5.0",
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
79
|
"@babel/runtime": "^7.18.3",
|
|
80
|
-
"@chain-registry/types": "^0.
|
|
80
|
+
"@chain-registry/types": "^0.5.0"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "7b1714a8a4afe11fd7dc893d1e5790997731d2f8"
|
|
83
83
|
}
|
package/types/index.d.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
+
import asset_list from './asset_list';
|
|
1
2
|
import assets from './assets';
|
|
2
3
|
import chain from './chain';
|
|
3
|
-
import ibc_assets from './ibc_assets';
|
|
4
4
|
declare const _default: {
|
|
5
5
|
chain: import('@chain-registry/types').Chain;
|
|
6
6
|
assets: import('@chain-registry/types').AssetList;
|
|
7
|
-
|
|
7
|
+
asset_list: import('@chain-registry/types').AssetList;
|
|
8
8
|
};
|
|
9
9
|
export default _default;
|
|
10
|
-
export { assets, chain
|
|
10
|
+
export { asset_list, assets, chain };
|
package/types/ibc_assets.d.ts
DELETED