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 03c1869 commit a967132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/abstract-provider/src.ts/index.ts
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 a967132

Please sign in to comment.