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