Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Commit

Permalink
Added support for null entries in EventFilter (ethers-io#1499).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo authored and pull[bot] committed Jun 4, 2021
1 parent 4f768b5 commit 1c09d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/abstract-provider/src.ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export interface TransactionReceipt {

export interface EventFilter {
address?: string;
topics?: Array<string | Array<string>>;
topics?: Array<string | Array<string> | null>;
}

export interface Filter extends EventFilter {
Expand Down

0 comments on commit 1c09d2b

Please sign in to comment.