mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-12 07:14:20 +00:00
74732a23fe
* move json-rpc specific marshalling to rpc * serialize Epoch/Slot with cast to avoid Defect * avoid a few eth1 deps * simplify imports
12 lines
320 B
Nim
12 lines
320 B
Nim
import
|
|
options,
|
|
callsigs_types
|
|
|
|
proc get_v1_node_identity(): NodeIdentityTuple
|
|
proc get_v1_node_version(): JsonNode
|
|
proc get_v1_node_syncing(): SyncInfo
|
|
proc get_v1_node_health(): JsonNode
|
|
|
|
proc get_v1_node_peers(state: Option[seq[string]],
|
|
direction: Option[seq[string]]): seq[NodePeerTuple]
|