Skip to content

Commit

Permalink
Added support for null entries in EventFilter (#1499).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Apr 23, 2021
1 parent cadccc3 commit 3bb5fbf
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 3bb5fbf

Please sign in to comment.