@chain-registry/client 1.19.2 → 1.21.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/main/chain-info.js +3 -2
- package/main/chain-util.js +59 -33
- package/main/fetcher.js +3 -2
- package/main/registry.js +11 -9
- package/package.json +4 -4
- package/types/chain-util.d.ts +18 -14
- package/CHANGELOG.md +0 -256
package/main/chain-info.js
CHANGED
|
@@ -9,7 +9,7 @@ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/cl
|
|
|
9
9
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
10
10
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
11
|
var _utils = require("@chain-registry/utils");
|
|
12
|
-
var ChainInfo =
|
|
12
|
+
var ChainInfo = /*#__PURE__*/function () {
|
|
13
13
|
function ChainInfo(options) {
|
|
14
14
|
(0, _classCallCheck2["default"])(this, ChainInfo);
|
|
15
15
|
(0, _defineProperty2["default"])(this, "chainName", void 0);
|
|
@@ -54,4 +54,5 @@ var ChainInfo = exports.ChainInfo = /*#__PURE__*/function () {
|
|
|
54
54
|
}
|
|
55
55
|
}]);
|
|
56
56
|
return ChainInfo;
|
|
57
|
-
}();
|
|
57
|
+
}();
|
|
58
|
+
exports.ChainInfo = ChainInfo;
|
package/main/chain-util.js
CHANGED
|
@@ -10,79 +10,105 @@ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/cl
|
|
|
10
10
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
11
11
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
12
12
|
var _utils = require("@chain-registry/utils");
|
|
13
|
-
var ChainRegistryChainUtil =
|
|
13
|
+
var ChainRegistryChainUtil = /*#__PURE__*/function () {
|
|
14
14
|
function ChainRegistryChainUtil(options) {
|
|
15
15
|
(0, _classCallCheck2["default"])(this, ChainRegistryChainUtil);
|
|
16
|
-
(0, _defineProperty2["default"])(this, "chainName", void 0);
|
|
17
|
-
(0, _defineProperty2["default"])(this, "chainInfo", void 0);
|
|
18
16
|
(0, _defineProperty2["default"])(this, "_assets", []);
|
|
19
|
-
this
|
|
20
|
-
|
|
17
|
+
(0, _defineProperty2["default"])(this, "_chainName", void 0);
|
|
18
|
+
var chainName = options.chainName,
|
|
19
|
+
chainInfo = options.chainInfo;
|
|
20
|
+
this._chainName = options.chainName;
|
|
21
21
|
this._assets = [{
|
|
22
|
-
assets: [].concat((0, _toConsumableArray2["default"])(
|
|
22
|
+
assets: [].concat((0, _toConsumableArray2["default"])(chainInfo.nativeAssetList.assets), (0, _toConsumableArray2["default"])(chainInfo.assetLists.flatMap(function (_ref) {
|
|
23
23
|
var assets = _ref.assets;
|
|
24
24
|
return assets;
|
|
25
25
|
}))),
|
|
26
|
-
chain_name:
|
|
26
|
+
chain_name: chainName
|
|
27
27
|
}];
|
|
28
28
|
}
|
|
29
29
|
(0, _createClass2["default"])(ChainRegistryChainUtil, [{
|
|
30
30
|
key: "getAssetByDenom",
|
|
31
31
|
value: function getAssetByDenom(denom) {
|
|
32
|
-
return (0, _utils.getAssetByDenom)(this._assets, denom, this.
|
|
32
|
+
return (0, _utils.getAssetByDenom)(this._assets, denom, this._chainName);
|
|
33
|
+
}
|
|
34
|
+
}, {
|
|
35
|
+
key: "getAssetBySymbol",
|
|
36
|
+
value: function getAssetBySymbol(symbol) {
|
|
37
|
+
return (0, _utils.getAssetBySymbol)(this._assets, symbol, this._chainName);
|
|
33
38
|
}
|
|
34
39
|
}, {
|
|
35
40
|
key: "getDenomByCoinGeckoId",
|
|
36
41
|
value: function getDenomByCoinGeckoId(coinGeckoId) {
|
|
37
|
-
return (0, _utils.getDenomByCoinGeckoId)(this._assets, coinGeckoId, this.
|
|
42
|
+
return (0, _utils.getDenomByCoinGeckoId)(this._assets, coinGeckoId, this._chainName);
|
|
38
43
|
}
|
|
39
44
|
}, {
|
|
40
45
|
key: "getCoinGeckoIdByDenom",
|
|
41
46
|
value: function getCoinGeckoIdByDenom(coinGeckoId) {
|
|
42
47
|
return (0, _utils.getCoinGeckoIdByDenom)(this._assets, coinGeckoId, {
|
|
43
|
-
chainName: this.
|
|
48
|
+
chainName: this._chainName
|
|
44
49
|
});
|
|
45
50
|
}
|
|
46
51
|
}, {
|
|
47
|
-
key: "
|
|
48
|
-
value: function
|
|
49
|
-
return (0, _utils.
|
|
52
|
+
key: "getSymbolByDenom",
|
|
53
|
+
value: function getSymbolByDenom(denom) {
|
|
54
|
+
return (0, _utils.getSymbolByDenom)(this._assets, denom, this._chainName);
|
|
50
55
|
}
|
|
51
56
|
}, {
|
|
52
|
-
key: "
|
|
53
|
-
value: function
|
|
54
|
-
return (0, _utils.
|
|
57
|
+
key: "getDenomBySymbol",
|
|
58
|
+
value: function getDenomBySymbol(symbol) {
|
|
59
|
+
return (0, _utils.getDenomBySymbol)(this._assets, symbol, this._chainName);
|
|
55
60
|
}
|
|
56
61
|
}, {
|
|
57
62
|
key: "getExponentByDenom",
|
|
58
63
|
value: function getExponentByDenom(denom) {
|
|
59
|
-
return (0, _utils.getExponentByDenom)(this._assets, denom, this.
|
|
64
|
+
return (0, _utils.getExponentByDenom)(this._assets, denom, this._chainName);
|
|
65
|
+
}
|
|
66
|
+
}, {
|
|
67
|
+
key: "getExponentBySymbol",
|
|
68
|
+
value: function getExponentBySymbol(symbol) {
|
|
69
|
+
return (0, _utils.getExponentBySymbol)(this._assets, symbol, this._chainName);
|
|
70
|
+
}
|
|
71
|
+
}, {
|
|
72
|
+
key: "getTokenLogoByDenom",
|
|
73
|
+
value: function getTokenLogoByDenom(denom) {
|
|
74
|
+
return (0, _utils.getTokenLogoByDenom)(this._assets, denom, this._chainName);
|
|
75
|
+
}
|
|
76
|
+
}, {
|
|
77
|
+
key: "getTokenNameByDenom",
|
|
78
|
+
value: function getTokenNameByDenom(denom) {
|
|
79
|
+
return (0, _utils.getTokenNameByDenom)(this._assets, denom, this._chainName);
|
|
80
|
+
}
|
|
81
|
+
}, {
|
|
82
|
+
key: "getChainNameByDenom",
|
|
83
|
+
value: function getChainNameByDenom(denom) {
|
|
84
|
+
return (0, _utils.getChainNameByDenom)(this._assets, denom);
|
|
60
85
|
}
|
|
61
86
|
}, {
|
|
62
|
-
key: "
|
|
63
|
-
value: function
|
|
64
|
-
return (0, _utils.
|
|
87
|
+
key: "mapCoinGeckoPricesToDenoms",
|
|
88
|
+
value: function mapCoinGeckoPricesToDenoms(prices) {
|
|
89
|
+
return (0, _utils.mapCoinGeckoPricesToDenoms)(this._assets, prices);
|
|
65
90
|
}
|
|
66
91
|
}, {
|
|
67
|
-
key: "
|
|
68
|
-
value: function
|
|
69
|
-
return (0, _utils.
|
|
92
|
+
key: "convertBaseUnitToDollarValue",
|
|
93
|
+
value: function convertBaseUnitToDollarValue(prices, symbol, amount) {
|
|
94
|
+
return (0, _utils.convertBaseUnitToDollarValue)(this._assets, prices, symbol, amount, this._chainName);
|
|
70
95
|
}
|
|
71
96
|
}, {
|
|
72
|
-
key: "
|
|
73
|
-
value: function
|
|
74
|
-
return (0, _utils.
|
|
97
|
+
key: "convertDollarValueToBaseUnit",
|
|
98
|
+
value: function convertDollarValueToBaseUnit(prices, symbol, value) {
|
|
99
|
+
return (0, _utils.convertDollarValueToBaseUnit)(this._assets, prices, symbol, value, this._chainName);
|
|
75
100
|
}
|
|
76
101
|
}, {
|
|
77
|
-
key: "
|
|
78
|
-
value: function
|
|
79
|
-
return (0, _utils.
|
|
102
|
+
key: "convertBaseUnitToDisplayUnit",
|
|
103
|
+
value: function convertBaseUnitToDisplayUnit(symbol, amount) {
|
|
104
|
+
return (0, _utils.convertBaseUnitToDisplayUnit)(this._assets, symbol, amount, this._chainName);
|
|
80
105
|
}
|
|
81
106
|
}, {
|
|
82
|
-
key: "
|
|
83
|
-
value: function
|
|
84
|
-
return (0, _utils.
|
|
107
|
+
key: "convertDisplayUnitToBaseUnit",
|
|
108
|
+
value: function convertDisplayUnitToBaseUnit(symbol, amount) {
|
|
109
|
+
return (0, _utils.convertDisplayUnitToBaseUnit)(this._assets, symbol, amount, this._chainName);
|
|
85
110
|
}
|
|
86
111
|
}]);
|
|
87
112
|
return ChainRegistryChainUtil;
|
|
88
|
-
}();
|
|
113
|
+
}();
|
|
114
|
+
exports.ChainRegistryChainUtil = ChainRegistryChainUtil;
|
package/main/fetcher.js
CHANGED
|
@@ -23,7 +23,7 @@ var fetchUrl = function fetchUrl(url) {
|
|
|
23
23
|
});
|
|
24
24
|
};
|
|
25
25
|
// QUESTION: should ChainRegistryFetcher just be ChainRegistry?
|
|
26
|
-
var ChainRegistryFetcher =
|
|
26
|
+
var ChainRegistryFetcher = /*#__PURE__*/function () {
|
|
27
27
|
function ChainRegistryFetcher() {
|
|
28
28
|
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
29
29
|
(0, _classCallCheck2["default"])(this, ChainRegistryFetcher);
|
|
@@ -226,4 +226,5 @@ var ChainRegistryFetcher = exports.ChainRegistryFetcher = /*#__PURE__*/function
|
|
|
226
226
|
}()
|
|
227
227
|
}]);
|
|
228
228
|
return ChainRegistryFetcher;
|
|
229
|
-
}();
|
|
229
|
+
}();
|
|
230
|
+
exports.ChainRegistryFetcher = ChainRegistryFetcher;
|
package/main/registry.js
CHANGED
|
@@ -9,20 +9,21 @@ var _toConsumableArray2 = _interopRequireDefault(require("@babel/runtime/helpers
|
|
|
9
9
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
10
10
|
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
11
11
|
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
12
|
-
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
13
|
-
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
14
12
|
var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
|
|
15
13
|
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
14
|
+
var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));
|
|
15
|
+
var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));
|
|
16
16
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
17
17
|
var _chainUtil = require("./chain-util");
|
|
18
18
|
var _fetcher = require("./fetcher");
|
|
19
19
|
var _excluded = ["chainNames", "assetListNames", "ibcNamePairs", "baseUrl"];
|
|
20
|
-
function ownKeys(
|
|
21
|
-
function _objectSpread(
|
|
22
|
-
function
|
|
23
|
-
function _isNativeReflectConstruct() {
|
|
24
|
-
var ChainRegistryClient =
|
|
20
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
21
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { (0, _defineProperty2["default"])(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
22
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2["default"])(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2["default"])(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2["default"])(this, result); }; }
|
|
23
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
24
|
+
var ChainRegistryClient = /*#__PURE__*/function (_ChainRegistryFetcher) {
|
|
25
25
|
(0, _inherits2["default"])(ChainRegistryClient, _ChainRegistryFetcher);
|
|
26
|
+
var _super = _createSuper(ChainRegistryClient);
|
|
26
27
|
function ChainRegistryClient(options) {
|
|
27
28
|
var _this;
|
|
28
29
|
(0, _classCallCheck2["default"])(this, ChainRegistryClient);
|
|
@@ -31,7 +32,7 @@ var ChainRegistryClient = exports.ChainRegistryClient = /*#__PURE__*/function (_
|
|
|
31
32
|
ibcNamePairs = options.ibcNamePairs,
|
|
32
33
|
baseUrl = options.baseUrl,
|
|
33
34
|
restOptions = (0, _objectWithoutProperties2["default"])(options, _excluded);
|
|
34
|
-
_this =
|
|
35
|
+
_this = _super.call(this, restOptions);
|
|
35
36
|
(0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "_options", {
|
|
36
37
|
chainNames: [],
|
|
37
38
|
baseUrl: 'https://raw.githubusercontent.com/cosmos/chain-registry/master'
|
|
@@ -85,4 +86,5 @@ var ChainRegistryClient = exports.ChainRegistryClient = /*#__PURE__*/function (_
|
|
|
85
86
|
}
|
|
86
87
|
}]);
|
|
87
88
|
return ChainRegistryClient;
|
|
88
|
-
}(_fetcher.ChainRegistryFetcher);
|
|
89
|
+
}(_fetcher.ChainRegistryFetcher);
|
|
90
|
+
exports.ChainRegistryClient = ChainRegistryClient;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.21.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",
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
77
|
"@babel/runtime": "^7.21.0",
|
|
78
|
-
"@chain-registry/types": "^0.18.
|
|
79
|
-
"@chain-registry/utils": "^1.
|
|
78
|
+
"@chain-registry/types": "^0.18.2",
|
|
79
|
+
"@chain-registry/utils": "^1.19.1",
|
|
80
80
|
"bfs-path": "^1.0.2",
|
|
81
81
|
"cross-fetch": "^3.1.5"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "9f414e64137713ec7729edbf3715ce2e458eff3b"
|
|
84
84
|
}
|
package/types/chain-util.d.ts
CHANGED
|
@@ -1,24 +1,28 @@
|
|
|
1
1
|
import { Asset } from '@chain-registry/types';
|
|
2
|
-
import type {
|
|
2
|
+
import type { Denom, Exponent, DenomPriceMap, CoinGeckoUSDPrice } from '@chain-registry/utils';
|
|
3
3
|
import { ChainInfo } from './chain-info';
|
|
4
4
|
export interface ChainRegistryChainUtilOptions {
|
|
5
5
|
chainName: string;
|
|
6
6
|
chainInfo: ChainInfo;
|
|
7
7
|
}
|
|
8
8
|
export declare class ChainRegistryChainUtil {
|
|
9
|
-
chainName: string;
|
|
10
|
-
chainInfo: ChainInfo;
|
|
11
9
|
private _assets;
|
|
10
|
+
private _chainName;
|
|
12
11
|
constructor(options: ChainRegistryChainUtilOptions);
|
|
13
|
-
getAssetByDenom(denom:
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
12
|
+
getAssetByDenom(denom: Denom): Asset | undefined;
|
|
13
|
+
getAssetBySymbol(symbol: string): Asset | undefined;
|
|
14
|
+
getDenomByCoinGeckoId(coinGeckoId: string): Denom | undefined;
|
|
15
|
+
getCoinGeckoIdByDenom(coinGeckoId: string): Denom | undefined;
|
|
16
|
+
getSymbolByDenom(denom: Denom): string | undefined;
|
|
17
|
+
getDenomBySymbol(symbol: string): Denom | undefined;
|
|
18
|
+
getExponentByDenom(denom: Denom): Exponent | undefined;
|
|
19
|
+
getExponentBySymbol(symbol: string): Exponent | undefined;
|
|
20
|
+
getTokenLogoByDenom(denom: Denom): string | undefined;
|
|
21
|
+
getTokenNameByDenom(denom: Denom): string | undefined;
|
|
22
|
+
getChainNameByDenom(denom: Denom): string | undefined;
|
|
23
|
+
mapCoinGeckoPricesToDenoms(prices: Record<string, CoinGeckoUSDPrice>): DenomPriceMap;
|
|
24
|
+
convertBaseUnitToDollarValue(prices: DenomPriceMap, symbol: string, amount: string | number): string;
|
|
25
|
+
convertDollarValueToBaseUnit(prices: DenomPriceMap, symbol: string, value: string | number): string;
|
|
26
|
+
convertBaseUnitToDisplayUnit(symbol: string, amount: string | number): string;
|
|
27
|
+
convertDisplayUnitToBaseUnit(symbol: string, amount: string | number): string;
|
|
24
28
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,256 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [1.19.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.19.1...@chain-registry/client@1.19.2) (2024-02-27)
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## [1.19.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.19.0...@chain-registry/client@1.19.1) (2024-02-26)
|
|
15
|
-
|
|
16
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
# [1.19.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.4...@chain-registry/client@1.19.0) (2024-01-25)
|
|
23
|
-
|
|
24
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
## [1.18.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.3...@chain-registry/client@1.18.4) (2024-01-19)
|
|
31
|
-
|
|
32
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## [1.18.3](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.2...@chain-registry/client@1.18.3) (2024-01-19)
|
|
39
|
-
|
|
40
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
## [1.18.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.1...@chain-registry/client@1.18.2) (2024-01-19)
|
|
47
|
-
|
|
48
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
## [1.18.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.18.0...@chain-registry/client@1.18.1) (2024-01-17)
|
|
55
|
-
|
|
56
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
# [1.18.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.17.1...@chain-registry/client@1.18.0) (2023-12-20)
|
|
63
|
-
|
|
64
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
## [1.17.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.17.0...@chain-registry/client@1.17.1) (2023-12-15)
|
|
71
|
-
|
|
72
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
# [1.17.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.16.0...@chain-registry/client@1.17.0) (2023-12-15)
|
|
79
|
-
|
|
80
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
# [1.16.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.15.0...@chain-registry/client@1.16.0) (2023-12-15)
|
|
87
|
-
|
|
88
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
# [1.15.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.14.2...@chain-registry/client@1.15.0) (2023-09-15)
|
|
95
|
-
|
|
96
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
## [1.14.2](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.14.1...@chain-registry/client@1.14.2) (2023-07-30)
|
|
103
|
-
|
|
104
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
## [1.14.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.14.0...@chain-registry/client@1.14.1) (2023-07-12)
|
|
111
|
-
|
|
112
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
# [1.14.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.13.0...@chain-registry/client@1.14.0) (2023-07-11)
|
|
119
|
-
|
|
120
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
# [1.13.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.12.0...@chain-registry/client@1.13.0) (2023-07-08)
|
|
127
|
-
|
|
128
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
# [1.12.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.11.0...@chain-registry/client@1.12.0) (2023-06-27)
|
|
135
|
-
|
|
136
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
# [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)
|
|
143
|
-
|
|
144
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
## [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)
|
|
151
|
-
|
|
152
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
# [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)
|
|
159
|
-
|
|
160
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
# [1.9.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.8.0...@chain-registry/client@1.9.0) (2023-03-29)
|
|
167
|
-
|
|
168
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
# [1.8.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.7.0...@chain-registry/client@1.8.0) (2023-03-02)
|
|
175
|
-
|
|
176
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
# [1.7.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.6.0...@chain-registry/client@1.7.0) (2023-02-23)
|
|
183
|
-
|
|
184
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
# [1.6.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.5.0...@chain-registry/client@1.6.0) (2023-02-08)
|
|
191
|
-
|
|
192
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
# [1.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.4.1...@chain-registry/client@1.5.0) (2022-12-08)
|
|
199
|
-
|
|
200
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
## [1.4.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.4.0...@chain-registry/client@1.4.1) (2022-11-16)
|
|
207
|
-
|
|
208
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
# [1.4.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.3.0...@chain-registry/client@1.4.0) (2022-11-10)
|
|
215
|
-
|
|
216
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
# [1.3.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.2.1...@chain-registry/client@1.3.0) (2022-11-10)
|
|
223
|
-
|
|
224
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
## [1.2.1](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.2.0...@chain-registry/client@1.2.1) (2022-10-27)
|
|
231
|
-
|
|
232
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
# [1.2.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.1.0...@chain-registry/client@1.2.0) (2022-10-20)
|
|
239
|
-
|
|
240
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
# [1.1.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/client@1.0.1...@chain-registry/client@1.1.0) (2022-10-20)
|
|
247
|
-
|
|
248
|
-
**Note:** Version bump only for package @chain-registry/client
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
## 1.0.1 (2022-10-20)
|
|
255
|
-
|
|
256
|
-
**Note:** Version bump only for package @chain-registry/client
|