type PerformActionFilter: {
  "address": string | string[];
  "fromBlock": BlockTag;
  "nodeLocation": NodeLocation;
  "toBlock": BlockTag;
  "topics": (null | string | string[])[];
 } | {
  "address": string | string[];
  "blockHash": string;
  "nodeLocation": NodeLocation;
  "topics": (null | string | string[])[];
};

A normalized filter used for PerformActionRequest objects.

Source

providers/abstract-provider.ts:424