Transactions info
The Transactions info group retrieves data on individual transactions, such as status, receipt, and inclusion in a specific block. Key methods include:
eth_getTransactionByHash : Fetches transaction details using its hash.
eth_getTransactionCount : Returns the number of transactions sent from an address.
eth_getTransactionReceipt : Retrieves the receipt of a processed transaction.
eth_newPendingTransactionFilter : Available only on paid tier. Creates a filter for pending transactions.
eth_getTransactionByBlockHashAndIndex : Retrieves a transaction by block hash and index.
eth_getTransactionByBlockNumberAndIndex : Retrieves a transaction by block number and index.
txpool_content : Provides details of the transaction pool content.
eth_getRawTransactionByBlockHashAndIndex : Returns the raw (RLP-encoded) transaction at a given block hash and index.
eth_getRawTransactionByHash : Returns the raw (RLP-encoded) transaction data for a given transaction hash.
These methods provide developers with essential tools for transactions info on the Robinhood network.