nimbus-eth2/beacon_chain/spec/eth2_apis/beacon_rpc_client.nim
Jacek Sieka 74732a23fe
json cleanups (#2456)
* move json-rpc specific marshalling to rpc
* serialize Epoch/Slot with cast to avoid Defect
* avoid a few eth1 deps
* simplify imports
2021-03-26 15:11:06 +01:00

17 lines
559 B
Nim

import
std/os,
json_rpc/rpcclient,
../../rpc/eth2_json_rpc_serialization,
./callsigs_types
export
rpcclient,
callsigs_types,
eth2_json_rpc_serialization
createRpcSigs(RpcClient, currentSourcePath.parentDir / "beacon_callsigs.nim")
createRpcSigs(RpcClient, currentSourcePath.parentDir / "debug_callsigs.nim")
createRpcSigs(RpcClient, currentSourcePath.parentDir / "nimbus_callsigs.nim")
createRpcSigs(RpcClient, currentSourcePath.parentDir / "node_callsigs.nim")
createRpcSigs(RpcClient, currentSourcePath.parentDir / "validator_callsigs.nim")