We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6655ac3 commit 440728cCopy full SHA for 440728c
1 file changed
packages/txm/lib/TransactionManager.ts
@@ -43,7 +43,7 @@ export type TransactionManagerConfig = {
43
url: string
44
/**
45
* The timeout for the RPC node.
46
- * Defaults to 500 milliseconds.
+ * Defaults to 2000 milliseconds.
47
*/
48
timeout?: number
49
@@ -183,7 +183,7 @@ export class TransactionManager {
183
184
const retries = _config.rpc.retries || 2
185
const retryDelay = _config.rpc.retryDelay || 50
186
- const timeout = _config.rpc.timeout || 500
+ const timeout = _config.rpc.timeout || 2000
187
188
let transport: ViemTransport
189
if (this.transportProtocol === "http") {
0 commit comments