Skip to content

Feature Request: Log filter aggregation #15

Open
@MicahZoltu

Description

@MicahZoltu

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions