2021-06-18 17:20:48 +00:00
|
|
|
# Nimbus
|
2022-02-11 13:43:10 +00:00
|
|
|
# Copyright (c) 2021-2022 Status Research & Development GmbH
|
2021-06-18 17:20:48 +00:00
|
|
|
# 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].}
|
|
|
|
|
|
|
|
import
|
2022-02-22 10:52:44 +00:00
|
|
|
std/[times, sequtils],
|
|
|
|
json_rpc/[rpcproxy, rpcserver], nimcrypto/[hash, keccak],
|
2022-02-11 13:43:10 +00:00
|
|
|
web3/conversions, # sigh, for FixedBytes marshalling
|
2022-02-22 10:52:44 +00:00
|
|
|
eth/[common/eth_types, rlp],
|
2022-02-11 13:43:10 +00:00
|
|
|
# TODO: Using the Nimbus json-rpc helpers, but they could use some rework as
|
|
|
|
# they bring a whole lot of other stuff with them.
|
|
|
|
../../nimbus/rpc/[rpc_types, hexstrings, rpc_utils],
|
2022-02-22 10:52:44 +00:00
|
|
|
../../nimbus/errors, # for ValidationError, should be exported instead
|
2022-02-11 13:43:10 +00:00
|
|
|
../network/history/[history_network, history_content]
|
2021-06-18 17:20:48 +00:00
|
|
|
|
|
|
|
# Subset of Eth JSON-RPC API: https://eth.wiki/json-rpc/API
|
|
|
|
# Supported subset will eventually be found here:
|
|
|
|
# https://github.com/ethereum/stateless-ethereum-specs/blob/master/portal-network.md#json-rpc-api
|
|
|
|
#
|
|
|
|
# In order to already support these calls before every part of the Portal
|
|
|
|
# Network is up, one plan is to get the data directly from an external client
|
|
|
|
# through RPC calls. Practically just playing a proxy to that client.
|
|
|
|
# Can be done by just forwarding the rpc call, or by adding a call here, but
|
|
|
|
# that would introduce a unnecessary serializing/deserializing step.
|
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
# Note: Similar as `populateBlockObject` from rpc_utils, but more limited as
|
|
|
|
# there is currently only access to the block header.
|
2022-02-22 10:52:44 +00:00
|
|
|
proc buildBlockObject*(
|
|
|
|
header: BlockHeader, body: BlockBody,
|
|
|
|
fullTx = true, isUncle = false):
|
|
|
|
BlockObject {.raises: [Defect, ValidationError].} =
|
2022-02-11 13:43:10 +00:00
|
|
|
let blockHash = header.blockHash
|
|
|
|
|
|
|
|
result.number = some(encodeQuantity(header.blockNumber))
|
|
|
|
result.hash = some(blockHash)
|
|
|
|
result.parentHash = header.parentHash
|
|
|
|
result.nonce = some(hexDataStr(header.nonce))
|
|
|
|
result.sha3Uncles = header.ommersHash
|
|
|
|
result.logsBloom = FixedBytes[256] header.bloom
|
|
|
|
result.transactionsRoot = header.txRoot
|
|
|
|
result.stateRoot = header.stateRoot
|
|
|
|
result.receiptsRoot = header.receiptRoot
|
|
|
|
result.miner = header.coinbase
|
|
|
|
result.difficulty = encodeQuantity(header.difficulty)
|
|
|
|
result.extraData = hexDataStr(header.extraData)
|
|
|
|
|
|
|
|
# TODO: This is optional according to
|
|
|
|
# https://playground.open-rpc.org/?schemaUrl=https://raw.githubusercontent.com/ethereum/eth1.0-apis/assembled-spec/openrpc.json
|
|
|
|
# So we should probably change `BlockObject`.
|
|
|
|
result.totalDifficulty = encodeQuantity(UInt256.low())
|
|
|
|
|
|
|
|
let size = sizeof(BlockHeader) - sizeof(Blob) + header.extraData.len
|
|
|
|
result.size = encodeQuantity(size.uint)
|
|
|
|
|
|
|
|
result.gasLimit = encodeQuantity(header.gasLimit.uint64)
|
|
|
|
result.gasUsed = encodeQuantity(header.gasUsed.uint64)
|
|
|
|
result.timestamp = encodeQuantity(header.timeStamp.toUnix.uint64)
|
|
|
|
|
2022-02-22 10:52:44 +00:00
|
|
|
if not isUncle:
|
|
|
|
result.uncles = body.uncles.map(proc(h: BlockHeader): Hash256 = h.blockHash)
|
|
|
|
|
|
|
|
if fullTx:
|
|
|
|
var i = 0
|
|
|
|
for tx in body.transactions:
|
|
|
|
# ValidationError from tx.getSender in populateTransactionObject
|
|
|
|
result.transactions.add %(populateTransactionObject(tx, header, i))
|
|
|
|
inc i
|
|
|
|
else:
|
|
|
|
for tx in body.transactions:
|
|
|
|
result.transactions.add %(keccak256.digest(rlp.encode(tx)))
|
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
proc installEthApiHandlers*(
|
|
|
|
# Currently only HistoryNetwork needed, later we might want a master object
|
|
|
|
# holding all the networks.
|
|
|
|
rpcServerWithProxy: var RpcProxy, historyNetwork: HistoryNetwork)
|
2021-06-18 17:20:48 +00:00
|
|
|
{.raises: [Defect, CatchableError].} =
|
|
|
|
|
|
|
|
# Supported API
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_blockNumber")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_call")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_chainId")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_estimateGas")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_feeHistory")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getBalance")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
# rpcServerWithProxy.registerProxyMethod("eth_getBlockByHash")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getBlockByNumber")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-22 10:52:44 +00:00
|
|
|
# rpcServerWithProxy.registerProxyMethod("eth_getBlockTransactionCountByHash")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getBlockTransactionCountByNumber")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getCode")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getRawTransactionByHash")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getRawTransactionByBlockHashAndIndex")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getRawTransactionByBlockNumberAndIndex")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getStorageAt")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getTransactionByBlockHashAndIndex")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getTransactionByBlockNumberAndIndex")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getTransactionByHash")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getTransactionCount")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getTransactionReceipt")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getUncleByBlockHashAndIndex")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getUncleByBlockNumberAndIndex")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getUncleCountByBlockHash")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getUncleCountByBlockNumber")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getProof")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_sendRawTransaction")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
|
|
|
# Optional API
|
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_gasPrice")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getFilterChanges")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getFilterLogs")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_getLogs")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_newBlockFilter")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_newFilter")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_newPendingTransactionFilter")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_pendingTransactions")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2022-02-11 13:43:10 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_syncing")
|
2021-06-18 17:20:48 +00:00
|
|
|
|
2021-08-05 06:14:25 +00:00
|
|
|
rpcServerWithProxy.registerProxyMethod("eth_uninstallFilter")
|
2022-02-11 13:43:10 +00:00
|
|
|
|
|
|
|
# Supported API through the Portal Network
|
|
|
|
|
|
|
|
rpcServerWithProxy.rpc("eth_getBlockByHash") do(
|
|
|
|
data: EthHashStr, fullTransactions: bool) -> Option[BlockObject]:
|
|
|
|
## Returns information about a block by hash.
|
|
|
|
##
|
|
|
|
## data: Hash of a block.
|
|
|
|
## fullTransactions: If true it returns the full transaction objects, if
|
|
|
|
## false only the hashes of the transactions.
|
|
|
|
## Note: transactions and uncles are currently not implemented.
|
|
|
|
##
|
|
|
|
## Returns BlockObject or nil when no block was found.
|
2022-02-22 10:52:44 +00:00
|
|
|
let
|
|
|
|
blockHash = data.toHash()
|
|
|
|
|
2022-03-02 14:29:12 +00:00
|
|
|
let maybeHeaderAndBody = await historyNetwork.getBlock(1'u16, blockHash)
|
2022-02-22 10:52:44 +00:00
|
|
|
|
2022-03-02 14:29:12 +00:00
|
|
|
if maybeHeaderAndBody.isNone():
|
2022-02-22 10:52:44 +00:00
|
|
|
return none(BlockObject)
|
2022-02-11 13:43:10 +00:00
|
|
|
else:
|
2022-03-02 14:29:12 +00:00
|
|
|
let (header, body) = maybeHeaderAndBody.unsafeGet()
|
|
|
|
return some(buildBlockObject(header, body))
|
|
|
|
|
2022-02-22 10:52:44 +00:00
|
|
|
|
|
|
|
rpcServerWithProxy.rpc("eth_getBlockTransactionCountByHash") do(
|
|
|
|
data: EthHashStr) -> HexQuantityStr:
|
|
|
|
## Returns the number of transactions in a block from a block matching the
|
|
|
|
## given block hash.
|
|
|
|
##
|
|
|
|
## data: hash of a block
|
|
|
|
## Returns integer of the number of transactions in this block.
|
|
|
|
let
|
|
|
|
blockHash = data.toHash()
|
|
|
|
|
2022-03-02 14:29:12 +00:00
|
|
|
let maybeHeaderAndBody = await historyNetwork.getBlock(1'u16, blockHash)
|
2022-02-22 10:52:44 +00:00
|
|
|
|
2022-03-02 14:29:12 +00:00
|
|
|
if maybeHeaderAndBody.isNone():
|
|
|
|
raise newException(ValueError, "Could not find block with requested hash")
|
|
|
|
else:
|
|
|
|
let (_, body) = maybeHeaderAndBody.unsafeGet()
|
2022-02-22 10:52:44 +00:00
|
|
|
var txCount:uint = 0
|
2022-03-02 14:29:12 +00:00
|
|
|
for tx in body.transactions:
|
2022-02-22 10:52:44 +00:00
|
|
|
txCount.inc()
|
|
|
|
|
|
|
|
return encodeQuantity(txCount)
|
|
|
|
|
|
|
|
# Note: can't implement this yet as the fluffy node doesn't know the relation
|
|
|
|
# of tx hash -> block number -> block hash, in order to get the receipt
|
|
|
|
# from from the block with that block hash. The Canonical Indices Network
|
|
|
|
# would need to be implemented to get this information.
|
|
|
|
# rpcServerWithProxy.rpc("eth_getTransactionReceipt") do(
|
|
|
|
# data: EthHashStr) -> Option[ReceiptObject]:
|