Documentation
    Preparing search index...

    Interface WriteFilesFlow

    interface WriteFilesFlow {
        certify: () => Transaction;
        encode: () => Promise<void>;
        listFiles: () => Promise<
            {
                blobId: string;
                blobObject: {
                    blob_id: string;
                    certified_epoch: null
                    | number;
                    deletable: boolean;
                    encoding_type: number;
                    id: { id: string };
                    registered_epoch: number;
                    size: string;
                    storage: {
                        end_epoch: number;
                        id: { id: string };
                        start_epoch: number;
                        storage_size: string;
                    };
                };
                id: string;
            }[],
        >;
        register: (options: WriteFilesFlowRegisterOptions) => Transaction;
        upload: (options: WriteFilesFlowUploadOptions) => Promise<void>;
    }
    Index

    Properties

    certify: () => Transaction
    encode: () => Promise<void>
    listFiles: () => Promise<
        {
            blobId: string;
            blobObject: {
                blob_id: string;
                certified_epoch: null
                | number;
                deletable: boolean;
                encoding_type: number;
                id: { id: string };
                registered_epoch: number;
                size: string;
                storage: {
                    end_epoch: number;
                    id: { id: string };
                    start_epoch: number;
                    storage_size: string;
                };
            };
            id: string;
        }[],
    >
    upload: (options: WriteFilesFlowUploadOptions) => Promise<void>