Documentation
    Preparing search index...

    Interface WriteBlobStepRegistered

    Result after registering a blob on-chain. The blobObjectId is needed to resume.

    interface WriteBlobStepRegistered {
        blobId: string;
        blobObjectId: string;
        nonce?: Uint8Array<ArrayBufferLike>;
        step: "registered";
        txDigest: string;
    }
    Index

    Properties

    blobId: string
    blobObjectId: string

    Sui object ID of the created Blob object. Critical for resume — saves the on-chain registration.

    nonce?: Uint8Array<ArrayBufferLike>
    step: "registered"
    txDigest: string

    Transaction digest of the register transaction.