chain-registry 0.0.31 → 0.0.34
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/main/{types/chain.d.js → globals.d.js} +0 -0
- package/main/index.js +2 -11
- package/module/globals.d.js +0 -0
- package/module/index.js +1 -7
- package/package.json +2 -2
- package/main/index.d.js +0 -29603
- package/main/types/index.d.js +0 -18
- package/module/index.d.js +0 -29594
- package/module/types/chain.d.js +0 -1
- package/module/types/index.d.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,30 @@
|
|
|
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.0.34](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.33...chain-registry@0.0.34) (2022-08-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package chain-registry
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.0.33](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.32...chain-registry@0.0.33) (2022-08-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package chain-registry
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.0.32](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.31...chain-registry@0.0.32) (2022-08-12)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package chain-registry
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
## [0.0.31](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.30...chain-registry@0.0.31) (2022-08-12)
|
|
7
31
|
|
|
8
32
|
**Note:** Version bump only for package chain-registry
|
|
File without changes
|
package/main/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Object.defineProperty(exports, "__esModule", {
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
|
-
exports
|
|
6
|
+
exports["default"] = void 0;
|
|
7
7
|
var assets = [{
|
|
8
8
|
$schema: "../assetlist.schema.json",
|
|
9
9
|
chain_name: "ethereum",
|
|
@@ -6802,7 +6802,6 @@ var assets = [{
|
|
|
6802
6802
|
coingecko_id: "neta"
|
|
6803
6803
|
}]
|
|
6804
6804
|
}];
|
|
6805
|
-
exports.assets = assets;
|
|
6806
6805
|
var chains = [{
|
|
6807
6806
|
$schema: "../chain.schema.json",
|
|
6808
6807
|
chain_name: "agoric",
|
|
@@ -14030,7 +14029,6 @@ var chains = [{
|
|
|
14030
14029
|
tx_page: "https://ping.pub/vidulum/tx/${txHash}"
|
|
14031
14030
|
}]
|
|
14032
14031
|
}];
|
|
14033
|
-
exports.chains = chains;
|
|
14034
14032
|
var ibc = [{
|
|
14035
14033
|
$schema: "../ibc_data.schema.json",
|
|
14036
14034
|
"chain-1": {
|
|
@@ -17334,7 +17332,6 @@ var ibc = [{
|
|
|
17334
17332
|
tags: {}
|
|
17335
17333
|
}]
|
|
17336
17334
|
}];
|
|
17337
|
-
exports.ibc = ibc;
|
|
17338
17335
|
var ibc_assets = [{
|
|
17339
17336
|
chain: {
|
|
17340
17337
|
"chain-name": "akash",
|
|
@@ -29600,17 +29597,11 @@ var ibc_assets = [{
|
|
|
29600
29597
|
coingecko_id: "ion"
|
|
29601
29598
|
}]
|
|
29602
29599
|
}];
|
|
29603
|
-
exports.ibc_assets = ibc_assets;
|
|
29604
29600
|
var chainRegistry = {
|
|
29605
29601
|
assets: assets,
|
|
29606
29602
|
chains: chains,
|
|
29607
29603
|
ibc: ibc,
|
|
29608
29604
|
ibc_assets: ibc_assets
|
|
29609
29605
|
};
|
|
29610
|
-
var _default =
|
|
29611
|
-
assets: assets,
|
|
29612
|
-
chains: chains,
|
|
29613
|
-
ibc: ibc,
|
|
29614
|
-
ibc_assets: ibc_assets
|
|
29615
|
-
};
|
|
29606
|
+
var _default = chainRegistry;
|
|
29616
29607
|
exports["default"] = _default;
|
|
File without changes
|
package/module/index.js
CHANGED
|
@@ -29597,10 +29597,4 @@ const chainRegistry = {
|
|
|
29597
29597
|
ibc,
|
|
29598
29598
|
ibc_assets
|
|
29599
29599
|
};
|
|
29600
|
-
export default
|
|
29601
|
-
assets,
|
|
29602
|
-
chains,
|
|
29603
|
-
ibc,
|
|
29604
|
-
ibc_assets
|
|
29605
|
-
};
|
|
29606
|
-
export { assets, chains, ibc, ibc_assets };
|
|
29600
|
+
export default chainRegistry;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.34",
|
|
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",
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@babel/runtime": "^7.18.3"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "d33cdfbb1b05faedf219cb4a5affe914e526aa20"
|
|
75
75
|
}
|