Module Network_peer.Peer

module Id : sig ... end

A libp2p PeerID is more or less a hash of a public key.

module Stable : sig ... end
type t = Stable.Latest.t = {
host : Core.Unix.Inet_addr.Blocking_sexp.t;
libp2p_port : int;
peer_id : string;
}
val compare : t -> t -> int
val t_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val of_yojson : [> `Assoc of ( Core.String.t, [> `Int of int | `String of Id.Stable.V1.t ] ) Core.List.Assoc.t ] -> ( Stable.Latest.t, string ) Core.Result.t
val to_yojson : Stable.Latest.t -> [> `Assoc of (string * [> `Int of int | `String of Id.Stable.V1.t ]) list ]
val compare : Stable.Latest.t -> Stable.Latest.t -> Core_kernel__.Import.int
val hash_fold_t : Ppx_hash_lib.Std.Hash.state -> Stable.Latest.t -> Ppx_hash_lib.Std.Hash.state
val hash : Stable.Latest.t -> Ppx_hash_lib.Std.Hash.hash_value
val hashable : Stable.Latest.t Core_kernel__.Hashtbl.Hashable.t
module Table : sig ... end
module Hash_set : sig ... end
module Hash_queue : sig ... end
val (>=) : Stable.Latest.t -> Stable.Latest.t -> bool
val (<=) : Stable.Latest.t -> Stable.Latest.t -> bool
val (=) : Stable.Latest.t -> Stable.Latest.t -> bool
val (>) : Stable.Latest.t -> Stable.Latest.t -> bool
val (<) : Stable.Latest.t -> Stable.Latest.t -> bool
val (<>) : Stable.Latest.t -> Stable.Latest.t -> bool
val equal : Stable.Latest.t -> Stable.Latest.t -> bool
val compare : Stable.Latest.t -> Stable.Latest.t -> int
val ascending : Stable.Latest.t -> Stable.Latest.t -> int
val descending : Stable.Latest.t -> Stable.Latest.t -> int
val between : Stable.Latest.t -> low:Stable.Latest.t -> high:Stable.Latest.t -> bool
val clamp : Stable.Latest.t -> min:Stable.Latest.t -> max:Stable.Latest.t -> Stable.Latest.t Base__.Or_error.t
type comparator_witness = Core_kernel__Comparable.Make_binable(Stable.Latest).comparator_witness
val validate_lbound : min:Stable.Latest.t Base__.Maybe_bound.t -> Stable.Latest.t Base__.Validate.check
val validate_ubound : max:Stable.Latest.t Base__.Maybe_bound.t -> Stable.Latest.t Base__.Validate.check
val validate_bound : min:Stable.Latest.t Base__.Maybe_bound.t -> max:Stable.Latest.t Base__.Maybe_bound.t -> Stable.Latest.t Base__.Validate.check
module Replace_polymorphic_compare : sig ... end
val comparator : ( Stable.Latest.t, comparator_witness ) Core_kernel__Comparator.comparator
module Map : sig ... end
module Set : sig ... end
val create : Core.Unix.Inet_addr.Blocking_sexp.t -> libp2p_port:int -> peer_id:string -> t
val to_discovery_host_and_port : t -> Core.Host_and_port.t
val to_string : t -> string
val to_multiaddr_string : t -> string
val pretty_list : t list -> string
module Event : sig ... end
module Display : sig ... end
val ip : t -> Core.Unix.Inet_addr.Blocking_sexp.t
val to_display : t -> Display.t
val of_display : Display.t -> t