@blockchaincommons/uniform-resources - v1.0.0-beta.3
    Preparing search index...

    One part of a fountain-coded message; the CBOR array [seqNum, seqLen, messageLen, checksum, data] on the wire. seqNum, seqLen and messageLen are the reference's usize counters (safe integers here, u32 on the wire) and checksum is a u32.

    interface FountainPart {
        seqNum: number;
        seqLen: number;
        messageLen: number;
        checksum: number;
        data: Uint8Array;
    }
    Index
    seqNum: number

    1-based part number; parts 1..seqLen are the plain fragments.

    seqLen: number

    Number of fragments the message was cut into.

    messageLen: number

    Length of the whole message in bytes.

    checksum: number

    CRC-32 of the whole message.

    data: Uint8Array

    One fragment, or the XOR of several.