OMPX JavaScript SDK
    Preparing search index...

    Interface SessionEntry

    An entry in the session store representing an open payment channel. The exact shape is extended by implementations (e.g. @ompx/client SessionEntry).

    interface SessionEntry {
        chainId: number;
        channelId: `0x${string}`;
        cumulativeAmount: bigint;
        depositAmount: bigint;
        expiresAt?: number;
        openedAt: number;
        payee: `0x${string}`;
        token: `0x${string}`;
    }
    Index

    Properties

    chainId: number
    channelId: `0x${string}`
    cumulativeAmount: bigint
    depositAmount: bigint
    expiresAt?: number
    openedAt: number
    payee: `0x${string}`
    token: `0x${string}`