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[])[];
};
Was this page helpful?