A NodeAddress is an IPv4/IPv6 address/TCP port combination

interface NodeAddress {
    address: string;
    family: 4 | 6;
    port: number;
}

Properties

Properties

address: string
family: 4 | 6
port: number