We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a021485 commit a7b8d01Copy full SHA for a7b8d01
src/server/schemas/event.ts
@@ -2,7 +2,7 @@ import { BigNumber } from "ethers";
2
3
export type ContractEventV4 = {
4
eventName: string;
5
- data: Record<string, any>;
+ data: Record<string, unknown>;
6
transaction: {
7
blockNumber: number;
8
blockHash: string;
@@ -20,7 +20,7 @@ export type ContractEventV4 = {
20
21
export type ContractEventV5 = {
22
23
- args: Record<string, any>;
+ args: Record<string, unknown>;
24
address: string;
25
topic: string[];
26
data: string;
0 commit comments