This function processes the provided payload bytes according to the specified configuration.
config
- Configuration of the payload processing.payload_bytes
- Network-specific byte-list of the payload to be processed.This function returns a tuple containing:
Vec<u256>
- A vector of processed values extracted from the payload, one for each feed_ids as in Config
.u64
- The timestamp of the processed data.let (values, size) = process_input(payload_bytes, config);