Open mbaxter opened 6 years ago
Another possibility is for ethql to calculate the hash to match against from a user-provided Solidity function signature, e.g.:
transactions(filter: { solidityFunction: "transfer(address,uint256,bytes)" }) {
}
WDYT?
Nice - I like that idea 👍
It may be useful to filter transactions by inputData content. This would allow users to target transactions that invoke arbitrary contract methods. The filter might look something like:
transactions(filter: { inputStartsWith: "0x12345678" })
.