The fetch configuration type (e.g., EthFetchConfig, MoveFetchConfig)
The data type that will be processed (e.g., Event, Transaction, Block)
OptionalpartitionKey?: string | PartitionHandler<D>Optional partition key for data partitioning. Can be a static string or a function that computes the key from the data.
OptionalskipDecoding?: booleanOptional whether to skip decoding By default the processor will do decoding (e.g. replace string number to bigint, byte array to base64, etc), however in some case you might skip the decoding (meaning no data_decoded field) and only access the raw data field
Handler options that extend fetch configuration with optional partitioning support.