mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-27 14:58:46 +00:00
d47f53cd9d
* Reorg things left into networking and gossip_processing * time -> beacon_clock * fix builds
19 lines
647 B
Nim
19 lines
647 B
Nim
import
|
|
std/[os, json],
|
|
json_rpc/[rpcclient, jsonmarshal],
|
|
../../rpc/eth2_json_rpc_serialization,
|
|
../crypto, ../digest, ../datatypes,
|
|
callsigs_types
|
|
|
|
export
|
|
rpcclient,
|
|
crypto, digest, datatypes,
|
|
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")
|