@iotexproject/kit 0.0.85 → 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 +21 -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}`;
@@ -8335,6 +8338,14 @@ declare class Analyzer extends BaseDBModule {
8335
8338
  start_date?: string;
8336
8339
  end_date?: string;
8337
8340
  }): Promise<postgres.RowList<postgres.Row[]>>;
8341
+ dailyAvgTps({ start_date, end_date }?: {
8342
+ start_date?: string;
8343
+ end_date?: string;
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[]>>;
8338
8349
  avgDailyTxVolume({ start_date, end_date }?: {
8339
8350
  start_date?: string;
8340
8351
  end_date?: string;
@@ -8376,6 +8387,16 @@ declare class Transaction extends BaseDBModule {
8376
8387
  startCursor: any;
8377
8388
  endCursor: any;
8378
8389
  }>;
8390
+ getAllTransactionsWithAssetsByAccount({ address, pageSize, startCursor, endCursor }: {
8391
+ address: string;
8392
+ pageSize?: number;
8393
+ startCursor?: number;
8394
+ endCursor?: number;
8395
+ }): Promise<{
8396
+ data: import("postgres").Row[];
8397
+ startCursor: any;
8398
+ endCursor: any;
8399
+ }>;
8379
8400
  }
8380
8401
  declare const modules$1: {
8381
8402
  account: Account;
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.85",
5
+ "version": "v0.0.87",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {