encodeQuiltBlobs method
Encode multiple blobs into a quilt.
Reads the current committee shard count and delegates to
encodeQuilt from utils/quilts.dart.
Mirrors the TS SDK's encodeQuilt() method.
Implementation
Future<EncodeQuiltResult> encodeQuiltBlobs({
required List<QuiltBlob> blobs,
}) async {
final state = await _stateReader.systemState();
return encodeQuilt(blobs: blobs, numShards: state.nShards);
}