nimiqclient.models.peer.Peer¶
-
class
nimiqclient.models.peer.
Peer
(id, address, addressState, connectionState=None, version=None, timeOffset=None, headHash=None, latency=None, rx=None, tx=None)[source]¶ Bases:
object
Peer information returned by the server.
- Parameters
id (str) – Peer id.
address (str) – Peer address.
addressState (int) – Peer address state.
connectionState (PeerConnectionState, optional) – Peer connection state.
version (int, optional) – Node version the peer is running.
timeOffset (int, optional) – Time offset with the peer (in miliseconds).
headHash (str, optional) – Hash of the head block of the peer.
latency (int, optional) – Latency to the peer.
rx (int, optional) – Received bytes.
tx (int, optional) – Sent bytes.
Methods