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
Hi guys,
For my application (based on 0x/mesh protocol) I need the eth_getLogs() web3 method to be able to query the node using the filter "blockHash" to retrieve proper information about the block and transactions included in it, the result is a follows:
Result: om.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "blockHash" (class org.ethereum.rpc.Web3$FilterRequest), not marked as ignorable (4 known properties: "toBlock", "fromBlock", "address", "topics"])
As the EIP-234 shows: https://eips.ethereum.org/EIPS/eip-234 this is proposed as an alternative to filter by block range and it is quite useful for latest developments.
Given that this is a common filter nowadays and being used by most latest developments for DeFi projects do you think that will be viable to include this in upcoming rskj node releases?
I think not only our project but the whole community will benefit from it.
Thank in advance
The text was updated successfully, but these errors were encountered:
Hi guys,
For my application (based on 0x/mesh protocol) I need the eth_getLogs() web3 method to be able to query the node using the filter "blockHash" to retrieve proper information about the block and transactions included in it, the result is a follows:
Result:
om.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "blockHash" (class org.ethereum.rpc.Web3$FilterRequest), not marked as ignorable (4 known properties: "toBlock", "fromBlock", "address", "topics"])
Expected Result:
Log data by block, like:
As the EIP-234 shows: https://eips.ethereum.org/EIPS/eip-234 this is proposed as an alternative to filter by block range and it is quite useful for latest developments.
Given that this is a common filter nowadays and being used by most latest developments for DeFi projects do you think that will be viable to include this in upcoming rskj node releases?
I think not only our project but the whole community will benefit from it.
Thank in advance
The text was updated successfully, but these errors were encountered: