Skip to content

Commit

Permalink
lint: any to unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
nischitpra committed Dec 12, 2024
1 parent 766fee5 commit 686afe0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/schemas/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { BigNumber } from "ethers";

export type ContractEventV4 = {
eventName: string;
data: Record<string, any>;
data: Record<string, unknown>;
transaction: {
blockNumber: number;
blockHash: string;
Expand All @@ -20,7 +20,7 @@ export type ContractEventV4 = {

export type ContractEventV5 = {
eventName: string;
args: Record<string, any>;
args: Record<string, unknown>;
address: string;
topic: string[];
data: string;
Expand Down

0 comments on commit 686afe0

Please sign in to comment.