Transactions info#
Retrieves data on individual transactions, such as status, receipt, and inclusion in a specific block.
eth_getTransactionByHash : Retrieves transaction details using the transaction hash.
eth_getTransactionCount : Returns the number of transactions sent from a specific address.
eth_getTransactionReceipt : Retrieves the receipt of a completed transaction.
eth_newPendingTransactionFilter : Available only on paid tier. Sets up a filter to track pending transactions.
eth_getTransactionByBlockHashAndIndex : Fetches a transaction by its block hash and index.
eth_getTransactionByBlockNumberAndIndex : Retrieves a transaction by its block number and index.
txpool_content : Displays the contents of the transaction pool.
These methods are useful for tracking and managing transactions on the network.