@cityofzion/blockchain-service 1.10.0 → 1.10.2
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/functions.d.ts +1 -1
- package/dist/functions.js +1 -2
- package/dist/interfaces.d.ts +3 -2
- package/package.json +1 -1
package/dist/functions.d.ts
CHANGED
|
@@ -6,5 +6,5 @@ export declare function hasNft<BSName extends string = string>(service: Blockcha
|
|
|
6
6
|
export declare function hasExplorerService<BSName extends string = string>(service: BlockchainService<BSName>): service is BlockchainService<BSName> & BSWithExplorerService;
|
|
7
7
|
export declare function hasLedger<BSName extends string = string>(service: BlockchainService<BSName>): service is BlockchainService<BSName> & BSWithLedger<BSName>;
|
|
8
8
|
export declare function waitForTransaction<BSName extends string = string>(service: BlockchainService<BSName>, txId: string): Promise<boolean>;
|
|
9
|
-
export declare function waitForAccountTransaction<BSName extends string = string>(service: BlockchainService<BSName>, txId: string, account: Account<BSName
|
|
9
|
+
export declare function waitForAccountTransaction<BSName extends string = string>(service: BlockchainService<BSName>, txId: string, account: Account<BSName>, maxAttempts?: number): Promise<boolean>;
|
|
10
10
|
export declare function fetchAccountsForBlockchainServices<BSName extends string = string>(blockchainServices: BlockchainService<BSName>[], getAccountCallback: (service: BlockchainService<BSName>, index: number) => Promise<Account<BSName>>): Promise<Map<BSName, Account<BSName>[]>>;
|
package/dist/functions.js
CHANGED
|
@@ -57,9 +57,8 @@ function waitForTransaction(service, txId) {
|
|
|
57
57
|
});
|
|
58
58
|
}
|
|
59
59
|
exports.waitForTransaction = waitForTransaction;
|
|
60
|
-
function waitForAccountTransaction(service, txId, account) {
|
|
60
|
+
function waitForAccountTransaction(service, txId, account, maxAttempts = 10) {
|
|
61
61
|
return __awaiter(this, void 0, void 0, function* () {
|
|
62
|
-
const maxAttempts = 10;
|
|
63
62
|
let attempts = 1;
|
|
64
63
|
do {
|
|
65
64
|
yield wait(60000);
|
package/dist/interfaces.d.ts
CHANGED
|
@@ -259,14 +259,15 @@ export type SwapServiceEvents<BSName extends string = string> = {
|
|
|
259
259
|
availableTokensToReceive: (tokens: SwapServiceLoadableValue<SwapServiceToken<BSName>[]>) => void | Promise<void>;
|
|
260
260
|
};
|
|
261
261
|
export type SwapServiceSwapResult = {
|
|
262
|
-
transactionHash: string;
|
|
263
|
-
numberOfTransactions: number;
|
|
264
262
|
id: string;
|
|
263
|
+
txFrom?: string;
|
|
264
|
+
log?: string;
|
|
265
265
|
};
|
|
266
266
|
export type SwapServiceStatusResponse = {
|
|
267
267
|
status: 'finished' | 'confirming' | 'exchanging' | 'failed' | 'refunded';
|
|
268
268
|
txFrom?: string;
|
|
269
269
|
txTo?: string;
|
|
270
|
+
log?: string;
|
|
270
271
|
};
|
|
271
272
|
export interface SwapServiceHelper {
|
|
272
273
|
getStatus(id: string): Promise<SwapServiceStatusResponse>;
|