-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support eth_getBlockReceipts #12429
Comments
I'd Like to work on this |
Awesome, I will assign this ticket to you then @virajbhartiya. Let us know if you need additional pointers to where this should go in code, either here or in the #fil-lotus-dev channel in Slack. |
Yes sure. Thanks a lot |
Hey, @rjan90, so just to be clear, we have to implement a function |
@virajbhartiya yes, but please do a bit of research on the various forms of Ethereum documentation out there to confirm that |
I think the output of this is the same as
eth_getTransactionReceipts
but you query for the block number instead of transaction hash and the result is just an array with all of theeth_getTransactionReceipts
results.This is an efficient way to get all details of a tipset rather than querying for all messages and constructing it yourself. Just need to be careful about doing proper de-duplication.
The text was updated successfully, but these errors were encountered: