chain-registry 0.0.27 → 0.0.30
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 +6 -0
- package/main/types/chain.d.js +1 -0
- package/main/types/chain.js +30 -0
- package/main/types/index.d.js +18 -0
- package/main/types/index.js +18 -0
- package/module/index.js +6 -0
- package/module/types/chain.d.js +1 -0
- package/module/types/chain.js +21 -0
- package/module/types/index.d.js +1 -0
- package/module/types/index.js +1 -0
- 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.30](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.29...chain-registry@0.0.30) (2022-08-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package chain-registry
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [0.0.29](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.28...chain-registry@0.0.29) (2022-08-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package chain-registry
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [0.0.28](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.27...chain-registry@0.0.28) (2022-08-12)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package chain-registry
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
6
30
|
## [0.0.27](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.26...chain-registry@0.0.27) (2022-08-12)
|
|
7
31
|
|
|
8
32
|
**Note:** Version bump only for package chain-registry
|
package/main/index.js
CHANGED
|
@@ -29601,6 +29601,12 @@ var ibc_assets = [{
|
|
|
29601
29601
|
}]
|
|
29602
29602
|
}];
|
|
29603
29603
|
exports.ibc_assets = ibc_assets;
|
|
29604
|
+
var chainRegistry = {
|
|
29605
|
+
assets: assets,
|
|
29606
|
+
chains: chains,
|
|
29607
|
+
ibc: ibc,
|
|
29608
|
+
ibc_assets: ibc_assets
|
|
29609
|
+
};
|
|
29604
29610
|
var _default = {
|
|
29605
29611
|
assets: assets,
|
|
29606
29612
|
chains: chains,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,30 @@
|
|
|
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 = {}));
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
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/index.js
CHANGED
|
@@ -29591,6 +29591,12 @@ const ibc_assets = [{
|
|
|
29591
29591
|
coingecko_id: "ion"
|
|
29592
29592
|
}]
|
|
29593
29593
|
}];
|
|
29594
|
+
const chainRegistry = {
|
|
29595
|
+
assets,
|
|
29596
|
+
chains,
|
|
29597
|
+
ibc,
|
|
29598
|
+
ibc_assets
|
|
29599
|
+
};
|
|
29594
29600
|
export default {
|
|
29595
29601
|
assets,
|
|
29596
29602
|
chains,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,21 @@
|
|
|
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 = {}));
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chain';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './chain';
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
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": "5cd490e3becf2681ba6b98c1a62cfdcfda9bf3ba"
|
|
75
75
|
}
|