interface InternalState {
    length: undefined | number;
    localState: PeerState;
    namespace:
        | "blob"
        | "auth"
        | "config"
        | "data"
        | "blobIndex";
    peerSyncControllers: Map<string, PeerSyncController>;
    remoteStates: Map<string, PeerState>;
}

Properties

length: undefined | number

Core length, e.g. how many blocks in the core (including blocks that are not downloaded)

localState: PeerState
namespace:
    | "blob"
    | "auth"
    | "config"
    | "data"
    | "blobIndex"
peerSyncControllers: Map<string, PeerSyncController>
remoteStates: Map<string, PeerState>