| 560 | |
| 561 | @dataclass |
| 562 | class LogSelection: |
| 563 | # Address of the contract, any logs that has any of these addresses will be returned. Empty means match all. |
| 564 | address: Optional[list[str]] = None |
| 565 | # Topics to match, each member of the top level array is another array, if the nth topic matches any topic specified in nth element of topics, the log will be returned. Empty means match all. |
| 566 | topics: Optional[list[list[str]]] = None |
| 567 | |
| 568 | |
| 569 | @dataclass |
no outgoing calls
no test coverage detected