@0xobelisk/sui-client 1.1.8 → 1.1.9
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/dubhe.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/dubhe.ts +1 -1
package/dist/dubhe.d.ts
CHANGED
|
@@ -64,7 +64,7 @@ export declare class Dubhe {
|
|
|
64
64
|
orderBy?: string[];
|
|
65
65
|
}): Promise<ConnectionResponse<IndexerTransaction>>;
|
|
66
66
|
getTransaction(digest: string): Promise<IndexerTransaction | undefined>;
|
|
67
|
-
|
|
67
|
+
waitForIndexerTransaction(digest: string, options?: {
|
|
68
68
|
checkInterval?: number;
|
|
69
69
|
timeout?: number;
|
|
70
70
|
maxRetries?: number;
|
package/dist/index.js
CHANGED
|
@@ -2309,7 +2309,7 @@ var Dubhe = class {
|
|
|
2309
2309
|
async getTransaction(digest) {
|
|
2310
2310
|
return await this.suiIndexerClient.getTransaction(digest);
|
|
2311
2311
|
}
|
|
2312
|
-
async
|
|
2312
|
+
async waitForIndexerTransaction(digest, options) {
|
|
2313
2313
|
const {
|
|
2314
2314
|
checkInterval = 100,
|
|
2315
2315
|
timeout = 3e4,
|