@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.js
CHANGED
|
@@ -18179,7 +18179,7 @@ async function pollTransactionStatus(txId, client, maxAttempts = 60, intervalMs
|
|
|
18179
18179
|
status: "CONFIRMED",
|
|
18180
18180
|
txHash,
|
|
18181
18181
|
gasUsed: response.gasUsed ? BigInt(response.gasUsed) : 0n,
|
|
18182
|
-
blockNumber: response.blockNumber ?
|
|
18182
|
+
blockNumber: response.blockNumber ? Number(response.blockNumber) : 0
|
|
18183
18183
|
};
|
|
18184
18184
|
}
|
|
18185
18185
|
if (status === "FAILED") {
|