You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is not possible to pass Indexed return values you want to filter the logs by to contract filters, as it is using web3.jscontract-events. This would be useful.
From the web3.js docs:
var event = myContractInstance.MyEvent({valueA: 23} [, additionalFilterObject])
Parameters
Object - Indexed return values you want to filter the logs by, e.g. {'valueA': 1, 'valueB': [myFirstAddress, mySecondAddress]}. By default all filter values are set to null. It means, that they will match any event of given type sent from this contract.
The text was updated successfully, but these errors were encountered:
ethjs-filter
Issue Type
Description
It is not possible to pass Indexed return values you want to filter the logs by to contract filters, as it is using
web3.js
contract-events. This would be useful.From the
web3.js
docs:Parameters
The text was updated successfully, but these errors were encountered: