@volr/react 0.1.12 → 0.1.13
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.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -18203,7 +18203,7 @@ async function pollTransactionStatus(txId, client, maxAttempts = 60, intervalMs
|
|
|
18203
18203
|
status: "CONFIRMED",
|
|
18204
18204
|
txHash,
|
|
18205
18205
|
gasUsed: response.gasUsed ? BigInt(response.gasUsed) : 0n,
|
|
18206
|
-
blockNumber: response.blockNumber ?
|
|
18206
|
+
blockNumber: response.blockNumber ? Number(response.blockNumber) : 0
|
|
18207
18207
|
};
|
|
18208
18208
|
}
|
|
18209
18209
|
if (status === "FAILED") {
|