Skip to content

v2.11.0

Choose a tag to compare

@DZakh DZakh released this 10 Dec 12:43
04725f3

Field Selection per Event

You can specify field selection for individual events. This feature is useful for optimizing RPC and HyperSync calls by fetching only the data relevant to specific events, avoiding over-fetching.

Per-event field selection overrides any global field selection, ensuring precise data handling for each event.

events:
  - event: "Transfer(address indexed from, address indexed to, uint256 value)"
    field_selection:
      transaction_fields:
        - "to"
        - "from"

By @DZakh in #373, #375, #376, #382

Full Changelog: v2.10.0...v2.11.0