@pioneer-platform/osmosis-client 0.0.13 → 0.0.15

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/lib/index.d.ts CHANGED
@@ -5,6 +5,7 @@ declare let networkOsmo: any;
5
5
  declare let networkAtom: any;
6
6
  declare const uuid: any;
7
7
  declare let networkSupport: any[];
8
+ declare let assetSupport: any[];
8
9
  interface QuoteResult {
9
10
  amountOutMin: string;
10
11
  amountOut: string;
package/lib/index.js CHANGED
@@ -50,6 +50,10 @@ var networkSupport = [
50
50
  ChainToNetworkId["OSMO"],
51
51
  ChainToNetworkId["GAIA"],
52
52
  ];
53
+ var assetSupport = [
54
+ shortListSymbolToCaip["OSMO"],
55
+ shortListSymbolToCaip["GAIA"],
56
+ ];
53
57
  module.exports = {
54
58
  init: function (settings) {
55
59
  return true;
@@ -57,6 +61,9 @@ module.exports = {
57
61
  networkSupport: function () {
58
62
  return networkSupport;
59
63
  },
64
+ assetSupport: function () {
65
+ return assetSupport;
66
+ },
60
67
  getQuote: function (quote) {
61
68
  return get_quote(quote);
62
69
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/osmosis-client",
3
- "version": "0.0.13",
3
+ "version": "0.0.15",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "dependencies": {