62 | {nodeInfo.address
63 | ? `${nodeInfo.name} (${nodeInfo.address})`
64 | : nodeInfo.name}
65 |
67 |
68 | Block:{" "}
69 | {nodeInfo.bestBlockId
70 | ? nodeInfo.bestBlockId.blockNumber
71 | : "Unknown"}{" "}
72 | (
73 | {nodeInfo.bestBlockId
74 | ? nodeInfo.bestBlockId.hash.substr(0, 6)
75 | : "Unknown"}
76 | )
77 |
78 |
79 | Version:{" "}
80 | {nodeInfo.version ? nodeInfo.version.version : "Unknown"} (
81 | {nodeInfo.version
82 | ? nodeInfo.version.hash.substr(0, 6)
83 | : "Unknown"}
84 | )
85 |
86 |