@chain-registry/client 1.10.0 → 1.11.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 +16 -0
- package/main/registry.js +18 -22
- package/package.json +25 -25
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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
|
+
# [1.11.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.10.1...@chain-registry/client@1.11.0) (2023-04-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @chain-registry/client
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.10.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.10.0...@chain-registry/client@1.10.1) (2023-04-18)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @chain-registry/client
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [1.10.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.9.0...@chain-registry/client@1.10.0) (2023-04-18)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @chain-registry/client
|
package/main/registry.js
CHANGED
|
@@ -218,18 +218,16 @@ var ChainRegistryFetcher = /*#__PURE__*/function () {
|
|
|
218
218
|
var _fetch = (0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee(url) {
|
|
219
219
|
var data;
|
|
220
220
|
return _regenerator["default"].wrap(function _callee$(_context) {
|
|
221
|
-
while (1) {
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
return _context.stop();
|
|
232
|
-
}
|
|
221
|
+
while (1) switch (_context.prev = _context.next) {
|
|
222
|
+
case 0:
|
|
223
|
+
_context.next = 2;
|
|
224
|
+
return fetchUrl(url);
|
|
225
|
+
case 2:
|
|
226
|
+
data = _context.sent;
|
|
227
|
+
this.update(data);
|
|
228
|
+
case 4:
|
|
229
|
+
case "end":
|
|
230
|
+
return _context.stop();
|
|
233
231
|
}
|
|
234
232
|
}, _callee, this);
|
|
235
233
|
}));
|
|
@@ -244,16 +242,14 @@ var ChainRegistryFetcher = /*#__PURE__*/function () {
|
|
|
244
242
|
var _fetchUrls = (0, _asyncToGenerator2["default"])( /*#__PURE__*/_regenerator["default"].mark(function _callee2() {
|
|
245
243
|
var _this = this;
|
|
246
244
|
return _regenerator["default"].wrap(function _callee2$(_context2) {
|
|
247
|
-
while (1) {
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
return
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
return _context2.stop();
|
|
256
|
-
}
|
|
245
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
246
|
+
case 0:
|
|
247
|
+
return _context2.abrupt("return", Promise.all(this.urls.map(function (url) {
|
|
248
|
+
return _this.fetch(url);
|
|
249
|
+
})));
|
|
250
|
+
case 1:
|
|
251
|
+
case "end":
|
|
252
|
+
return _context2.stop();
|
|
257
253
|
}
|
|
258
254
|
}, _callee2, this);
|
|
259
255
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.11.0",
|
|
4
4
|
"description": "Chain Registry Client",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -41,42 +41,42 @@
|
|
|
41
41
|
"url": "https://github.com/cosmology-tech/chain-registry/issues"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@babel/cli": "7.
|
|
45
|
-
"@babel/core": "7.
|
|
46
|
-
"@babel/eslint-parser": "^7.
|
|
47
|
-
"@babel/node": "^7.
|
|
44
|
+
"@babel/cli": "7.21.0",
|
|
45
|
+
"@babel/core": "7.21.4",
|
|
46
|
+
"@babel/eslint-parser": "^7.21.3",
|
|
47
|
+
"@babel/node": "^7.20.7",
|
|
48
48
|
"@babel/plugin-proposal-class-properties": "7.18.6",
|
|
49
49
|
"@babel/plugin-proposal-export-default-from": "7.18.10",
|
|
50
|
-
"@babel/plugin-proposal-object-rest-spread": "7.
|
|
51
|
-
"@babel/plugin-transform-runtime": "7.
|
|
52
|
-
"@babel/preset-env": "7.
|
|
53
|
-
"@babel/preset-typescript": "^7.
|
|
54
|
-
"@types/jest": "^29.
|
|
50
|
+
"@babel/plugin-proposal-object-rest-spread": "7.20.7",
|
|
51
|
+
"@babel/plugin-transform-runtime": "7.21.4",
|
|
52
|
+
"@babel/preset-env": "7.21.4",
|
|
53
|
+
"@babel/preset-typescript": "^7.21.4",
|
|
54
|
+
"@types/jest": "^29.5.1",
|
|
55
55
|
"@types/sha.js": "^2.4.0",
|
|
56
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
57
|
-
"@typescript-eslint/parser": "5.
|
|
56
|
+
"@typescript-eslint/eslint-plugin": "5.59.0",
|
|
57
|
+
"@typescript-eslint/parser": "5.59.0",
|
|
58
58
|
"babel-core": "7.0.0-bridge.0",
|
|
59
|
-
"babel-jest": "29.
|
|
60
|
-
"babel-watch": "^7.
|
|
59
|
+
"babel-jest": "29.5.0",
|
|
60
|
+
"babel-watch": "^7.7.2",
|
|
61
61
|
"cross-env": "^7.0.2",
|
|
62
|
-
"eslint": "8.
|
|
63
|
-
"eslint-config-prettier": "^8.
|
|
62
|
+
"eslint": "8.38.0",
|
|
63
|
+
"eslint-config-prettier": "^8.8.0",
|
|
64
64
|
"eslint-plugin-prettier": "^4.0.0",
|
|
65
65
|
"eslint-plugin-simple-import-sort": "8.0.0",
|
|
66
66
|
"eslint-plugin-unused-imports": "2.0.0",
|
|
67
|
-
"jest": "^29.
|
|
67
|
+
"jest": "^29.5.0",
|
|
68
68
|
"long": "^5.2.0",
|
|
69
|
-
"prettier": "^2.7
|
|
70
|
-
"regenerator-runtime": "^0.13.
|
|
71
|
-
"ts-jest": "^29.0
|
|
72
|
-
"typescript": "^
|
|
69
|
+
"prettier": "^2.8.7",
|
|
70
|
+
"regenerator-runtime": "^0.13.11",
|
|
71
|
+
"ts-jest": "^29.1.0",
|
|
72
|
+
"typescript": "^5.0.4"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@babel/runtime": "^7.
|
|
76
|
-
"@chain-registry/types": "^0.
|
|
77
|
-
"@chain-registry/utils": "^1.
|
|
75
|
+
"@babel/runtime": "^7.21.0",
|
|
76
|
+
"@chain-registry/types": "^0.16.0",
|
|
77
|
+
"@chain-registry/utils": "^1.10.0",
|
|
78
78
|
"bfs-path": "^1.0.2",
|
|
79
79
|
"cross-fetch": "^3.1.5"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "51dac38c0a630c1ca49d55de9b4a9c71665a6775"
|
|
82
82
|
}
|