snowstorm
    Preparing search index...

    Interface SnowstormRoute

    Describes a Snowstorm Route. Contains a chain of Snowstorm Peers. This is related to but distinct from the RouteDescriptor type;

    Instead, this describes more the relationship of chaining between SnowstormPeers, so it's a level higher. The implementation detail of how to reach between peers may change depending on network environment shifts. Those specifics are within the RouteDescriptors within.

    TODO: Revisit and perhaps clean up the relations of these types.

    interface SnowstormRoute {
        exit: SnowstormPeer;
        hops: [];
        origin: SnowstormPeer;
    }
    Index

    Properties

    Properties

    hops: []