interface Waku {
    connectionManager: IConnectionManager;
    filter?: IFilter;
    libp2p: Libp2p;
    lightPush?: ILightPush;
    relay?: IRelay;
    store?: IStore;
    dial(peer, protocols?): Promise<Stream>;
    isConnected(): boolean;
    isStarted(): boolean;
    start(): Promise<void>;
    stop(): Promise<void>;
}

Hierarchy (view full)

Implemented by

    Properties

    connectionManager: IConnectionManager
    filter?: IFilter
    libp2p: Libp2p
    lightPush?: ILightPush
    relay?: IRelay
    store?: IStore

    Methods

    Generated using TypeDoc