Vana SDK - v2.2.2
    Preparing search index...

    Interface StoredOperation

    Represents a stored operation in the queue.

    interface StoredOperation {
        id: string;
        status: "processing" | "failed" | "submitted" | "queued" | "completed";
        data: string;
        retryCount?: number;
        createdAt?: number;
        metadata?: any;
    }
    Index

    Properties

    id: string

    Unique identifier for the operation

    status: "processing" | "failed" | "submitted" | "queued" | "completed"

    Current status of the operation

    data: string

    Serialized transaction or operation data

    retryCount?: number

    Number of retry attempts

    createdAt?: number

    Timestamp when the operation was created

    metadata?: any

    Additional metadata