chain-registry 0.0.29 → 0.0.32
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/index.js +4 -11
- package/module/index.js +3 -7
- package/package.json +3 -3
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.32](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.31...chain-registry@0.0.32) (2022-08-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package chain-registry
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.0.31](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.30...chain-registry@0.0.31) (2022-08-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package chain-registry
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.0.30](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.29...chain-registry@0.0.30) (2022-08-12)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package chain-registry
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
## [0.0.29](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.28...chain-registry@0.0.29) (2022-08-12)
|
|
7
31
|
|
|
8
32
|
**Note:** Version bump only for package chain-registry
|
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",
|
|
@@ -29599,16 +29596,12 @@ var ibc_assets = [{
|
|
|
29599
29596
|
},
|
|
29600
29597
|
coingecko_id: "ion"
|
|
29601
29598
|
}]
|
|
29602
|
-
}];
|
|
29603
|
-
|
|
29604
|
-
// chains: Chain[]
|
|
29605
|
-
// }
|
|
29606
|
-
|
|
29607
|
-
exports.ibc_assets = ibc_assets;
|
|
29608
|
-
var _default = {
|
|
29599
|
+
}];
|
|
29600
|
+
var chainRegistry = {
|
|
29609
29601
|
assets: assets,
|
|
29610
29602
|
chains: chains,
|
|
29611
29603
|
ibc: ibc,
|
|
29612
29604
|
ibc_assets: ibc_assets
|
|
29613
29605
|
};
|
|
29606
|
+
var _default = chainRegistry;
|
|
29614
29607
|
exports["default"] = _default;
|
package/module/index.js
CHANGED
|
@@ -29590,15 +29590,11 @@ const ibc_assets = [{
|
|
|
29590
29590
|
},
|
|
29591
29591
|
coingecko_id: "ion"
|
|
29592
29592
|
}]
|
|
29593
|
-
}];
|
|
29594
|
-
|
|
29595
|
-
// chains: Chain[]
|
|
29596
|
-
// }
|
|
29597
|
-
|
|
29598
|
-
export default {
|
|
29593
|
+
}];
|
|
29594
|
+
const chainRegistry = {
|
|
29599
29595
|
assets,
|
|
29600
29596
|
chains,
|
|
29601
29597
|
ibc,
|
|
29602
29598
|
ibc_assets
|
|
29603
29599
|
};
|
|
29604
|
-
export
|
|
29600
|
+
export default chainRegistry;
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.32",
|
|
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",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE",
|
|
8
8
|
"main": "main/index.js",
|
|
9
9
|
"module": "module/index.js",
|
|
10
|
-
"typings": "
|
|
10
|
+
"typings": "types/index.d.ts",
|
|
11
11
|
"directories": {
|
|
12
12
|
"lib": "src",
|
|
13
13
|
"test": "__tests__"
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"dependencies": {
|
|
72
72
|
"@babel/runtime": "^7.18.3"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "d45a4b94b9f6bff1176d0e9fc201415b82063246"
|
|
75
75
|
}
|