Documentation
    Preparing search index...

    Interface WriteBlobStepEncoded

    Result after encoding a blob. The blobId is deterministic from the content.

    interface WriteBlobStepEncoded {
        blobId: string;
        nonce?: Uint8Array<ArrayBufferLike>;
        rootHash: Uint8Array;
        step: "encoded";
        unencodedSize: number;
    }
    Index

    Properties

    blobId: string

    Deterministic blob ID derived from the content.

    nonce?: Uint8Array<ArrayBufferLike>

    Nonce used for upload relay authentication. Only present when upload relay is configured. Must be saved for resume.

    rootHash: Uint8Array

    Merkle root hash of the encoded blob.

    step: "encoded"
    unencodedSize: number

    Original unencoded size in bytes.