Documentation
    Preparing search index...

    Interface WriteBlobStepUploaded

    Result after uploading slivers to storage nodes. Contains confirmations or certificate for certification.

    interface WriteBlobStepUploaded {
        blobId: string;
        blobObjectId: string;
        certificate?: ProtocolMessageCertificate;
        confirmations?: (StorageConfirmation | null)[];
        nonce?: Uint8Array<ArrayBufferLike>;
        step: "uploaded";
    }
    Index

    Properties

    blobId: string
    blobObjectId: string

    Certificate from upload relay.

    confirmations?: (StorageConfirmation | null)[]

    Storage confirmations from direct upload (one per committee node, null for failed nodes).

    nonce?: Uint8Array<ArrayBufferLike>
    step: "uploaded"