content: Space.Store.Schema.StructSchema<{
    digest: Space.Store.Schema.Schema<Uint8Array, unknown>;
    size: Space.Store.Schema.NumberSchema<number & Phantom<{
        typeof: "integer";
    }>, unknown>;
}, unknown> = ...

Blob description for being ingested by the service.

Type declaration

  • digest: Space.Store.Schema.Schema<Uint8Array, unknown>

    A multihash digest of the blob payload bytes, uniquely identifying blob.

  • size: Space.Store.Schema.NumberSchema<number & Phantom<{
        typeof: "integer";
    }>, unknown>

    Number of bytes contained by this blob. Service will provision write target for this exact size. Attempt to write a larger Blob file will fail.

Generated using TypeDoc