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

    Interface IRelayerStateStore

    Simple storage interface for operation state tracking.

    This interface is used by the relayer handler to track operation state in a stateful mode. Implementations can use any backend storage system.

    interface IRelayerStateStore {
        get(operationId: string): Promise<OperationState | null>;
        set(operationId: string, state: OperationState): Promise<void>;
    }
    Index

    Methods

    Methods