@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 +3 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
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;
|