interface FullNode {
    connectionManager: IConnectionManager;
    filter: IFilterSDK;
    libp2p: Libp2p;
    lightPush: ILightPushSDK;
    relay: IRelay;
    store: IStoreSDK;
    dial(peer, protocols?): Promise<Stream>;
    isConnected(): boolean;
    isStarted(): boolean;
    start(): Promise<void>;
    stop(): Promise<void>;
}

Hierarchy (view full)

Properties

connectionManager: IConnectionManager
filter: IFilterSDK
libp2p: Libp2p
lightPush: ILightPushSDK
relay: IRelay
store: IStoreSDK

Methods

Generated using TypeDoc