@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 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 ? BigInt(response.blockNumber) : 0n
18206
+ blockNumber: response.blockNumber ? Number(response.blockNumber) : 0
18207
18207
  };
18208
18208
  }
18209
18209
  if (status === "FAILED") {