@rabby-wallet/rabby-api 0.7.23-beta.0 → 0.7.23-beta.1

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/dist/index.d.ts CHANGED
@@ -773,5 +773,8 @@ export declare class OpenApiService {
773
773
  }) => Promise<{
774
774
  success: boolean;
775
775
  }>;
776
+ getSupportedDEXList: () => Promise<{
777
+ dex_list: string[];
778
+ }>;
776
779
  }
777
780
  export {};
package/dist/index.js CHANGED
@@ -1115,6 +1115,10 @@ export class OpenApiService {
1115
1115
  const { data } = yield this.request.post('/v1/bridge/history', params);
1116
1116
  return data;
1117
1117
  });
1118
+ this.getSupportedDEXList = () => __awaiter(this, void 0, void 0, function* () {
1119
+ const { data } = yield this.request.get('/v1/wallet/supported_dex_list');
1120
+ return data;
1121
+ });
1118
1122
  if (store instanceof Promise) {
1119
1123
  store.then((resolvedStore) => {
1120
1124
  this.store = resolvedStore;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rabby-wallet/rabby-api",
3
- "version": "0.7.23-beta.0",
3
+ "version": "0.7.23-beta.1",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [