package main import "fmt" type Peer struct { Enode string `json:"enode"` ID PeerId `json:"id"` Name string `json:"name"` Caps []string `json:"caps"` Network NetworkInfo `json:"network"` Protocols map[string]string `json:"protocols"` } func (p Peer) String() string { return fmt.Sprintf("Peer(ID=%s)", p.ID) } type PeerId string // the ID is too long to display in full in most places func (id PeerId) String() string { return fmt.Sprintf("%s...%s", string(id[:6]), string(id[len(id)-6:])) } type NetworkInfo struct { LocalAddress string `json:"localAddress"` RemoteAddress string `json:"remoteAddress"` Inbound bool `json:"inbound"` Trusted bool `json:"trusted"` Static bool `json:"static"` }