2022-09-10 13:05:32 +00:00
|
|
|
proc eth_chaindId(): HexQuantityStr
|
2022-02-11 13:43:10 +00:00
|
|
|
proc eth_getBlockByHash(data: EthHashStr, fullTransactions: bool): Option[BlockObject]
|
2022-08-04 06:34:53 +00:00
|
|
|
proc eth_getBlockByNumber(quantityTag: string, fullTransactions: bool): Option[BlockObject]
|
2022-09-10 13:05:32 +00:00
|
|
|
proc eth_getBlockTransactionCountByHash(data: EthHashStr): HexQuantityStr
|
2023-03-28 13:50:23 +00:00
|
|
|
proc eth_getTransactionReceipt(data: Hash256): Option[ReceiptObject]
|
2022-06-29 15:44:08 +00:00
|
|
|
proc eth_getLogs(filterOptions: FilterOptions): seq[FilterLog]
|
2023-03-28 13:50:23 +00:00
|
|
|
|
|
|
|
# Not supported: Only supported by Alchemy
|
|
|
|
proc eth_getBlockReceipts(data: Hash256): seq[ReceiptObject]
|