@rabby-wallet/rabby-api 0.9.12 → 0.9.13
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 +4 -0
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1445,6 +1445,10 @@ export class OpenApiService {
|
|
|
1445
1445
|
const { data } = yield this.request.get('/v1/buy/supported_currency_list');
|
|
1446
1446
|
return data;
|
|
1447
1447
|
});
|
|
1448
|
+
this.getOfflineChainList = () => __awaiter(this, void 0, void 0, function* () {
|
|
1449
|
+
const { data } = yield this.request.get('/v1/chain/offline_list');
|
|
1450
|
+
return data;
|
|
1451
|
+
});
|
|
1448
1452
|
if (store instanceof Promise) {
|
|
1449
1453
|
store.then((resolvedStore) => {
|
|
1450
1454
|
this.store = resolvedStore;
|