@iotexproject/kit 0.0.69 → 0.0.71

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 +6 -3
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -7311,6 +7311,7 @@ declare class Analyzer extends BaseDBModule {
7311
7311
  nodesCount(): Promise<any>;
7312
7312
  dappsCount(): Promise<any>;
7313
7313
  totalCrossChainTxCount(): Promise<number>;
7314
+ nftContractCount(): Promise<any>;
7314
7315
  }
7315
7316
  declare class Staking$1 extends BaseDBModule {
7316
7317
  delegatesByHeight({ height }?: {
@@ -7324,13 +7325,15 @@ declare class Transaction extends BaseDBModule {
7324
7325
  getTransactionsCountByAccount({ address }: {
7325
7326
  address: string;
7326
7327
  }): Promise<any>;
7327
- getTransactionsByAccount({ address, pageSize, cursor }: {
7328
+ getTransactionsByAccount({ address, pageSize, startCursor, endCursor }: {
7328
7329
  address: string;
7329
7330
  pageSize?: number;
7330
- cursor?: number;
7331
+ startCursor?: number;
7332
+ endCursor?: number;
7331
7333
  }): Promise<{
7332
7334
  data: import("postgres").RowList<import("postgres").Row[]>;
7333
- cursor: any;
7335
+ startCursor: any;
7336
+ endCursor: any;
7334
7337
  }>;
7335
7338
  }
7336
7339
  declare class NFT extends BaseDBModule {
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.69",
5
+ "version": "v0.0.71",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "scripts": {