2021-03-26 06:52:01 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
{.push raises: [Defect].}
|
|
|
|
|
2020-10-27 09:00:57 +00:00
|
|
|
import
|
2020-11-20 14:42:04 +00:00
|
|
|
std/sequtils,
|
2021-03-26 14:11:06 +00:00
|
|
|
json_rpc/servers/httpserver,
|
2020-10-27 09:00:57 +00:00
|
|
|
chronicles,
|
2021-03-05 13:12:00 +00:00
|
|
|
../version, ../beacon_node_common,
|
|
|
|
../networking/[eth2_network, peer_pool],
|
2021-07-15 19:01:07 +00:00
|
|
|
../spec/datatypes/phase0,
|
2021-06-23 14:43:18 +00:00
|
|
|
../spec/[digest, presets],
|
2021-08-03 15:17:11 +00:00
|
|
|
./rpc_utils
|
2020-10-27 09:00:57 +00:00
|
|
|
|
|
|
|
logScope: topics = "debugapi"
|
|
|
|
|
|
|
|
type
|
|
|
|
RpcServer = RpcHttpServer
|
|
|
|
|
2021-03-26 06:52:01 +00:00
|
|
|
proc installDebugApiHandlers*(rpcServer: RpcServer, node: BeaconNode) {.
|
|
|
|
raises: [Exception].} = # TODO fix json-rpc
|
2020-10-27 09:00:57 +00:00
|
|
|
rpcServer.rpc("get_v1_debug_beacon_states_stateId") do (
|
2021-07-15 19:01:07 +00:00
|
|
|
stateId: string) -> phase0.BeaconState:
|
2020-10-27 09:00:57 +00:00
|
|
|
withStateForStateId(stateId):
|
2021-06-11 17:51:46 +00:00
|
|
|
return stateData.data.hbsPhase0.data
|
2020-10-27 09:00:57 +00:00
|
|
|
|
2021-02-09 09:23:26 +00:00
|
|
|
rpcServer.rpc("get_v1_debug_beacon_heads") do () -> seq[tuple[root: Eth2Digest, slot: Slot]]:
|
2021-06-01 11:13:40 +00:00
|
|
|
return node.dag.heads.mapIt((it.root, it.slot))
|