Add Robinhood Transactions & Receipts API page (eth_getBlockReceipts equivalent)#222
Merged
Merged
Conversation
Customer-driven page mapping JSON-RPC receipt methods to Bitquery: eth_getBlockReceipts (block-number/hash filter), eth_getTransactionReceipt, eth_getTransactionByHash, plus logs-via-Events, failed-tx and account history, block stats, live tx stream (WS-verified), and a full receipt field-mapping table. Documents the realtime-only caveat (Transactions has no archive on Robinhood) and Arbitrum-Orbit sequencer txs. All queries live-tested; registered in sidebar. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a Transactions & Receipts API page for Robinhood, driven by a recurring customer question ("what's the
eth_getBlockReceiptsequivalent?"). Organized around the JSON-RPC methods people migrate from, each mapped to the BitqueryEVM.Transactionscube. Every query was run against the production endpoint before publishing; the transaction stream was verified over WebSocket.Covers:
eth_getBlockReceipts—Transactionsfiltered byBlock.NumberorBlock.Hash, one row per receipteth_getTransactionReceipt— single-tx filter with status, gas, fee breakdowneth_getTransactionByHash— header view incl.Transaction.DataDocuments two verified facts: the
Transactionscube is realtime-only on Robinhood (no archive table;combinedonly serves the realtime window), and Robinhood's Arbitrum-Orbit sequencer/system transactions (Type: 106) appearing in blocks. Registered in the sidebar after the Calls page.Testing
🤖 Generated with Claude Code