chain-registry 0.0.34 → 0.0.35
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/{globals.d.js → index.d.js} +0 -0
- package/main/index.js +1 -2
- package/module/index.d.js +1 -0
- package/module/index.js +2 -3
- package/package.json +3 -3
- package/main/types/chain.js +0 -30
- package/main/types/index.js +0 -18
- package/module/globals.d.js +0 -0
- package/module/types/chain.js +0 -21
- package/module/types/index.js +0 -1
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
|
+
## [0.0.35](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.34...chain-registry@0.0.35) (2022-08-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package chain-registry
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [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
15
|
|
|
8
16
|
**Note:** Version bump only for package chain-registry
|
|
File without changes
|
package/main/index.js
CHANGED
|
@@ -29597,11 +29597,10 @@ var ibc_assets = [{
|
|
|
29597
29597
|
coingecko_id: "ion"
|
|
29598
29598
|
}]
|
|
29599
29599
|
}];
|
|
29600
|
-
var
|
|
29600
|
+
var _default = {
|
|
29601
29601
|
assets: assets,
|
|
29602
29602
|
chains: chains,
|
|
29603
29603
|
ibc: ibc,
|
|
29604
29604
|
ibc_assets: ibc_assets
|
|
29605
29605
|
};
|
|
29606
|
-
var _default = chainRegistry;
|
|
29607
29606
|
exports["default"] = _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/module/index.js
CHANGED
|
@@ -29591,10 +29591,9 @@ const ibc_assets = [{
|
|
|
29591
29591
|
coingecko_id: "ion"
|
|
29592
29592
|
}]
|
|
29593
29593
|
}];
|
|
29594
|
-
|
|
29594
|
+
export default {
|
|
29595
29595
|
assets,
|
|
29596
29596
|
chains,
|
|
29597
29597
|
ibc,
|
|
29598
29598
|
ibc_assets
|
|
29599
|
-
};
|
|
29600
|
-
export default chainRegistry;
|
|
29599
|
+
};
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.35",
|
|
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": "src/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": "7ce42de0986a376a005c2e6984c1f22b50eb8a8b"
|
|
75
75
|
}
|
package/main/types/chain.js
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.Status = exports.NetworkType = exports.KeyAlgo = void 0;
|
|
7
|
-
// https://app.quicktype.io/
|
|
8
|
-
var KeyAlgo;
|
|
9
|
-
exports.KeyAlgo = KeyAlgo;
|
|
10
|
-
|
|
11
|
-
(function (KeyAlgo) {
|
|
12
|
-
KeyAlgo["Ed25519"] = "ed25519";
|
|
13
|
-
KeyAlgo["Ethsecp256K1"] = "ethsecp256k1";
|
|
14
|
-
KeyAlgo["Secp256K1"] = "secp256k1";
|
|
15
|
-
})(KeyAlgo || (exports.KeyAlgo = KeyAlgo = {}));
|
|
16
|
-
|
|
17
|
-
var NetworkType;
|
|
18
|
-
exports.NetworkType = NetworkType;
|
|
19
|
-
|
|
20
|
-
(function (NetworkType) {
|
|
21
|
-
NetworkType["Mainnet"] = "mainnet";
|
|
22
|
-
NetworkType["Testnet"] = "testnet";
|
|
23
|
-
})(NetworkType || (exports.NetworkType = NetworkType = {}));
|
|
24
|
-
|
|
25
|
-
var Status;
|
|
26
|
-
exports.Status = Status;
|
|
27
|
-
|
|
28
|
-
(function (Status) {
|
|
29
|
-
Status["Live"] = "live";
|
|
30
|
-
})(Status || (exports.Status = Status = {}));
|
package/main/types/index.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
|
|
7
|
-
var _chain = require("./chain");
|
|
8
|
-
|
|
9
|
-
Object.keys(_chain).forEach(function (key) {
|
|
10
|
-
if (key === "default" || key === "__esModule") return;
|
|
11
|
-
if (key in exports && exports[key] === _chain[key]) return;
|
|
12
|
-
Object.defineProperty(exports, key, {
|
|
13
|
-
enumerable: true,
|
|
14
|
-
get: function get() {
|
|
15
|
-
return _chain[key];
|
|
16
|
-
}
|
|
17
|
-
});
|
|
18
|
-
});
|
package/module/globals.d.js
DELETED
|
File without changes
|
package/module/types/chain.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
// https://app.quicktype.io/
|
|
2
|
-
export let KeyAlgo;
|
|
3
|
-
|
|
4
|
-
(function (KeyAlgo) {
|
|
5
|
-
KeyAlgo["Ed25519"] = "ed25519";
|
|
6
|
-
KeyAlgo["Ethsecp256K1"] = "ethsecp256k1";
|
|
7
|
-
KeyAlgo["Secp256K1"] = "secp256k1";
|
|
8
|
-
})(KeyAlgo || (KeyAlgo = {}));
|
|
9
|
-
|
|
10
|
-
export let NetworkType;
|
|
11
|
-
|
|
12
|
-
(function (NetworkType) {
|
|
13
|
-
NetworkType["Mainnet"] = "mainnet";
|
|
14
|
-
NetworkType["Testnet"] = "testnet";
|
|
15
|
-
})(NetworkType || (NetworkType = {}));
|
|
16
|
-
|
|
17
|
-
export let Status;
|
|
18
|
-
|
|
19
|
-
(function (Status) {
|
|
20
|
-
Status["Live"] = "live";
|
|
21
|
-
})(Status || (Status = {}));
|
package/module/types/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './chain';
|