OMPX JavaScript SDK
    Preparing search index...

    Interface SessionStore

    Pluggable storage for MPP session payment channel state. Default in-memory implementation provided by @ompx/client.

    interface SessionStore {
        delete(key: string): Promise<void>;
        get(key: string): Promise<SessionStoreEntry | undefined>;
        set(key: string, entry: SessionStoreEntry): Promise<void>;
    }
    Index

    Methods

    Methods

    • Parameters

      • key: string

      Returns Promise<void>