Open
Description
Currently, if you add several filters, each one will result in a separate request for logs via eth_getLogs
. These filters could be aggregated so that we only make one request to eth_getLogs
.
The implementation for this would look something like (pseudocode):
Object.keys(this.logFilters).reduce((accumulator, currentValue) => {
accumulator.address.concat(currentValue.address)
accumulator.topics.forEach((topic, index) => topic.concat(currentValue.topics[index]))
}, { address: [], topics: [[], [], [], []] })
and be put somewhere around https://github.com/ethereumjs/ethereumjs-blockstream/blob/master/source/block-and-log-streamer.ts#L76
Note: Users who expressly want separate calls can choose to not use block-and-log-streamer and instead use one of the lower level primitives. block-and-log streamer is meant to be mildly opinionated.