mirror of
https://github.com/status-im/nimbus-eth2.git
synced 2025-01-10 06:16:25 +00:00
d8bb91d9a9
* partially integrate eth1 merge changes * use hexToSeqByte() and validate execution engine opaque transaction length * remove incorrect REST serialization code
10 lines
349 B
Nim
10 lines
349 B
Nim
import
|
|
strutils,
|
|
json_serialization/std/[sets, net], serialization/errors,
|
|
../spec/[datatypes, digest, crypto, eth2_apis/beacon_rpc_client],
|
|
json_rpc/[client, jsonmarshal]
|
|
|
|
from os import DirSep, AltSep
|
|
template sourceDir: string = currentSourcePath.rsplit({DirSep, AltSep}, 1)[0]
|
|
createRpcSigs(RpcClient, sourceDir & "/eth_merge_sigs.nim")
|