2022-02-11 13:43:10 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2022 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.
|
|
|
|
|
|
|
|
import
|
|
|
|
std/os,
|
|
|
|
json_rpc/rpcclient,
|
2022-03-30 06:55:38 +00:00
|
|
|
json_rpc/errors, # TODO: should be exported in json_rpc/clients/httpclient
|
2022-02-11 13:43:10 +00:00
|
|
|
web3/conversions, # sigh
|
2022-05-22 20:44:15 +00:00
|
|
|
../../nimbus/rpc/[rpc_types, hexstrings]
|
2022-02-11 13:43:10 +00:00
|
|
|
|
2023-03-28 13:50:23 +00:00
|
|
|
export rpcclient, rpc_types, hexstrings, errors
|
2022-02-11 13:43:10 +00:00
|
|
|
|
|
|
|
createRpcSigs(RpcClient, currentSourcePath.parentDir / "rpc_calls" / "rpc_eth_calls.nim")
|
2023-04-05 14:14:42 +00:00
|
|
|
createRpcSigs(RpcClient, currentSourcePath.parentDir / "rpc_calls" / "rpc_web3_calls.nim")
|