Type alias NodeContactAddressData

NodeContactAddressData: {
    connectedTime: number;
    mode: "direct" | "signal" | "relay";
    scopes: NodeAddressScope[];
}

This is the record value stored in the NodeGraph.

Type declaration

  • connectedTime: number

    Unix timestamp of when the connection was last active. This property should be set when the connection is first established, but it should also be updated as long as the connection is active.

  • mode: "direct" | "signal" | "relay"

    Indicates how the contact address was connected on its last connection establishment. The ICE procedure concurrently uses all methods to try to connect, however, whichever one succeeded first should be indicated here. When sharing this information to other nodes, it can hint towards whether a contact does not require signalling or relaying.

  • scopes: NodeAddressScope[]

    Scopes can be used to classify the address. Multiple scopes is understood as set-union.

Generated using TypeDoc