ots_getTransactionBySenderAndNonce
JSON-RPC method retrieves a transaction hash by specifying the sender address and nonce on the Hyperliquid EVM blockchain. This Otterscan-specific method helps locate transactions when you know the sender and nonce but not the transaction hash.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
- sender address (string, required): The address that sent the transaction
- nonce (integer, required): The nonce value used for the transaction
Response
The method returns the transaction hash if found, or null if no transaction exists with the specified sender and nonce.Response structure
result
— the transaction hash (32-byte hex string), ornull
if not found
Usage example
Shell
Example response (transaction found)
Example response (not found)
Finding multiple transactions
To find a sequence of transactions from an address:Use cases
Theots_getTransactionBySenderAndNonce
method is essential for:
- Transaction recovery: Find lost transaction hashes using sender and nonce
- Wallet debugging: Track down specific transactions from an account
- Nonce management: Verify which nonces have been used by an address
- Transaction replacement: Find original transactions before replacement
- Account auditing: Systematically review all transactions from an address
- Support tools: Help users find their transactions without the hash
- Forensic analysis: Track transaction sequences from specific accounts
- Testing verification: Confirm test transactions were submitted
- MEV analysis: Study transaction ordering and nonce patterns
- Integration recovery: Recover from lost transaction tracking in dApps
Body
application/json
JSON-RPC version
Available options:
2.0
The RPC method name
Available options:
ots_getTransactionBySenderAndNonce
Parameters: [sender address, nonce]
Request identifier