Generic data should be sent during the Fetch network request and not just a Vec<Vec<u8>>. We just need to ensure that this data structure is serializable and the response is also deserializable, using cbor. This provides more flexibility and weird byte encoding.
Generic data should be sent during the
Fetchnetwork request and not just aVec<Vec<u8>>. We just need to ensure that this data structure is serializable and the response is also deserializable, usingcbor. This provides more flexibility and weird byte encoding.