@iotexproject/kit 0.0.85 → 0.0.86
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 +14 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8335,6 +8335,10 @@ declare class Analyzer extends BaseDBModule {
|
|
|
8335
8335
|
start_date?: string;
|
|
8336
8336
|
end_date?: string;
|
|
8337
8337
|
}): Promise<postgres.RowList<postgres.Row[]>>;
|
|
8338
|
+
dailyAvgTps({ start_date, end_date }?: {
|
|
8339
|
+
start_date?: string;
|
|
8340
|
+
end_date?: string;
|
|
8341
|
+
}): Promise<postgres.RowList<postgres.Row[]>>;
|
|
8338
8342
|
avgDailyTxVolume({ start_date, end_date }?: {
|
|
8339
8343
|
start_date?: string;
|
|
8340
8344
|
end_date?: string;
|
|
@@ -8376,6 +8380,16 @@ declare class Transaction extends BaseDBModule {
|
|
|
8376
8380
|
startCursor: any;
|
|
8377
8381
|
endCursor: any;
|
|
8378
8382
|
}>;
|
|
8383
|
+
getAllTransactionsWithAssetsByAccount({ address, pageSize, startCursor, endCursor }: {
|
|
8384
|
+
address: string;
|
|
8385
|
+
pageSize?: number;
|
|
8386
|
+
startCursor?: number;
|
|
8387
|
+
endCursor?: number;
|
|
8388
|
+
}): Promise<{
|
|
8389
|
+
data: import("postgres").Row[];
|
|
8390
|
+
startCursor: any;
|
|
8391
|
+
endCursor: any;
|
|
8392
|
+
}>;
|
|
8379
8393
|
}
|
|
8380
8394
|
declare const modules$1: {
|
|
8381
8395
|
account: Account;
|