Skip to content

Commit 686afe0

Browse files
committed
lint: any to unknown
1 parent 766fee5 commit 686afe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/server/schemas/event.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { BigNumber } from "ethers";
22

33
export type ContractEventV4 = {
44
eventName: string;
5-
data: Record<string, any>;
5+
data: Record<string, unknown>;
66
transaction: {
77
blockNumber: number;
88
blockHash: string;
@@ -20,7 +20,7 @@ export type ContractEventV4 = {
2020

2121
export type ContractEventV5 = {
2222
eventName: string;
23-
args: Record<string, any>;
23+
args: Record<string, unknown>;
2424
address: string;
2525
topic: string[];
2626
data: string;

0 commit comments

Comments
 (0)