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

Hierarchy

Properties

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

Methods

Generated using TypeDoc