@iotexproject/kit 0.0.86 → 0.0.87

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +7 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -6286,6 +6286,9 @@ declare class Mimo {
6286
6286
  lpBalanceUSD: string;
6287
6287
  }[]>;
6288
6288
  getTokenList(): Promise<any>;
6289
+ getToken({ address }: {
6290
+ address: string;
6291
+ }): Promise<any>;
6289
6292
  }
6290
6293
  declare class MockBucketEntity {
6291
6294
  address: `0x${string}`;
@@ -8339,6 +8342,10 @@ declare class Analyzer extends BaseDBModule {
8339
8342
  start_date?: string;
8340
8343
  end_date?: string;
8341
8344
  }): Promise<postgres.RowList<postgres.Row[]>>;
8345
+ dailyPeakTps({ start_date, end_date }?: {
8346
+ start_date?: string;
8347
+ end_date?: string;
8348
+ }): Promise<postgres.RowList<postgres.Row[]>>;
8342
8349
  avgDailyTxVolume({ start_date, end_date }?: {
8343
8350
  start_date?: string;
8344
8351
  end_date?: string;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@iotexproject/kit",
3
3
  "module": "index.ts",
4
4
  "type": "module",
5
- "version": "v0.0.86",
5
+ "version": "v0.0.87",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {