@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 CHANGED
@@ -1097,5 +1097,9 @@ export declare class OpenApiService {
1097
1097
  name: string;
1098
1098
  image_url: string;
1099
1099
  }[]>;
1100
+ getOfflineChainList: () => Promise<{
1101
+ id: string;
1102
+ offline_at: number;
1103
+ }[]>;
1100
1104
  }
1101
1105
  export {};
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rabby-wallet/rabby-api",
3
- "version": "0.9.12",
3
+ "version": "0.9.13",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [