mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 03:31:20 +00:00
18 lines
382 B
Go
18 lines
382 B
Go
|
package node
|
||
|
|
||
|
type AddrRequest struct {
|
||
|
Addr string `json:"addr"`
|
||
|
}
|
||
|
|
||
|
type PeersResponse struct {
|
||
|
Peers []*Peer `json:"Peers"`
|
||
|
}
|
||
|
|
||
|
type Peer struct {
|
||
|
PeerID string `json:"peer_id"`
|
||
|
Enr string `json:"enr"`
|
||
|
LastSeenP2PAddress string `json:"last_seen_p2p_address"`
|
||
|
State string `json:"state"`
|
||
|
Direction string `json:"direction"`
|
||
|
}
|