Returns transaction information for a specific sender address and nonce. This method is useful for tracking transactions when you know the sender and the sequence number of their transaction.
eth_getTransactionBySenderAndNonce JSON-RPC method retrieves transaction information by specifying the sender address and transaction nonce on the Hyperliquid EVM blockchain. This method is particularly useful for tracking specific transactions when you know the sender and the sequence number of their transaction.
address — The Ethereum address that sent the transactionnonce — The transaction sequence number for the sender, in hexadecimal format with “0x” prefixnull if no transaction exists for the specified sender and nonce.
blockHash — Hash of the block containing the transactionblockNumber — Block number containing the transaction (hexadecimal)from — Address of the transaction sendergas — Gas limit provided for the transaction (hexadecimal)gasPrice — Gas price used for the transaction (hexadecimal)hash — Transaction hashinput — Transaction data payloadnonce — Transaction nonce (hexadecimal)to — Address of the transaction recipienttransactionIndex — Position of transaction in the block (hexadecimal)value — Value transferred in the transaction (hexadecimal, in wei)type — Transaction type (hexadecimal)v, r, s — Transaction signature componentsnull if no transaction is found for the specified sender and nonceeth_getTransactionBySenderAndNonce method is essential for applications that need to:
JSON-RPC version
2.0 The RPC method name
eth_getTransactionBySenderAndNonce Parameters: [sender_address, nonce]
Request identifier