You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks
Afaik this is currently blocked until we've figured out how to go from transaction to its block (we need data from the block for the rpc response)
In reth, transactions are indexed by global counter TxNumber.
eth_getTransactionByBlockNumberAndIndex
Are possible to be done with BlockBodies table that contains start_tx of that global counter and number of transaction in this block.
eth_getTransactionByBlockHashAndIndex
Block number can be get from HeaderNumbers and it becomes same story as in ByBlockNumber
eth_getTransactionByHash
We have table for it TxHashNumber to get tx global index and tx can be found in Transactions table
Describe the feature
Implement the following:
Additional context
Related tracking issue: #1225
I can start working on these.
The text was updated successfully, but these errors were encountered: