mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
14 lines
343 B
Go
14 lines
343 B
Go
|
package node
|
||
|
|
||
|
type SyncStatusResponse struct {
|
||
|
Data *SyncStatusResponseData `json:"data"`
|
||
|
}
|
||
|
|
||
|
type SyncStatusResponseData struct {
|
||
|
HeadSlot string `json:"head_slot"`
|
||
|
SyncDistance string `json:"sync_distance"`
|
||
|
IsSyncing bool `json:"is_syncing"`
|
||
|
IsOptimistic bool `json:"is_optimistic"`
|
||
|
ElOffline bool `json:"el_offline"`
|
||
|
}
|