We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c7d28e commit c80c673Copy full SHA for c80c673
packages/client/src/viem/signer.ts
@@ -64,7 +64,14 @@ function sendTransactionWith(
64
return ResultAsync.fromPromise(sendTransaction(walletClient, request), (err) =>
65
SigningError.from(err),
66
)
67
- .map(async (hash) => waitForTransactionReceipt(walletClient, { hash }))
+ .map(async (hash) =>
68
+ waitForTransactionReceipt(walletClient, {
69
+ hash,
70
+ pollingInterval: 100,
71
+ retryCount: 20,
72
+ retryDelay: 50,
73
+ }),
74
+ )
75
.map((receipt) => txHash(receipt.transactionHash));
76
}
77
0 commit comments