Documentation
    Preparing search index...

    Interface WriteBlobStepCertified

    Result after certifying a blob on-chain. The blob is now fully stored and retrievable.

    interface WriteBlobStepCertified {
        blobId: string;
        blobObject: {
            blob_id: string;
            certified_epoch: number | null;
            deletable: boolean;
            encoding_type: number;
            id: string;
            registered_epoch: number;
            size: string;
            storage: {
                end_epoch: number;
                id: string;
                start_epoch: number;
                storage_size: string;
            };
        };
        blobObjectId: string;
        step: "certified";
    }
    Index

    Properties

    blobId: string
    blobObject: {
        blob_id: string;
        certified_epoch: number | null;
        deletable: boolean;
        encoding_type: number;
        id: string;
        registered_epoch: number;
        size: string;
        storage: {
            end_epoch: number;
            id: string;
            start_epoch: number;
            storage_size: string;
        };
    }

    The fully parsed on-chain Blob object.

    blobObjectId: string
    step: "certified"