From c2e4e88dda5cbbd80f482a134c9d654c806986af Mon Sep 17 00:00:00 2001 From: Paul <108695806+pxrl@users.noreply.github.com> Date: Thu, 18 Dec 2025 13:20:42 +0000 Subject: [PATCH] fix(EventUtils): Handle bigint in spreadEventWithBlockNumber() --- src/utils/EventUtils.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/EventUtils.ts b/src/utils/EventUtils.ts index aca237e71..4a4c3bafb 100644 --- a/src/utils/EventUtils.ts +++ b/src/utils/EventUtils.ts @@ -18,6 +18,7 @@ export function spreadEvent(args: Result | Record): { [key: str switch (typeof args[key]) { case "boolean": // fallthrough case "number": + case "bigint": case "string": returnedObject[key] = args[key]; break;