Retrieve all transactions sent to a specific address to track wallet activity, exchange flows, or smart contract interactions.Documentation Index
Fetch the complete documentation index at: https://docs.sqd.dev/llms.txt
Use this file to discover all available pages before exploring further.
Use Case
Transaction queries help you:- Track incoming transactions to wallets or exchanges
- Monitor smart contract interactions
- Analyze transaction patterns
- Build transaction history feeds
Code Example
Try it yourself with the interactive query interface below:
Key Parameters
| Parameter | Description |
|---|---|
from | Filter transactions by sender address |
to | Filter transactions by recipient address |
sighash | Filter by function signature (first 4 bytes of input data) |
status | Transaction status: 1 = success, 0 = failure |
value | ETH amount transferred (in wei) |
input | Transaction calldata |
gasUsed | Actual gas consumed |
Expected Output
Filter by Function Signature
Query only specific function calls (e.g., ERC-20transfer function):
Monitor Outgoing Transactions
Track transactions from a specific wallet:Performance Tips
- Combine filters: Use both
fromandtofor bidirectional tracking - Filter by sighash: Reduces results to specific function calls
- Request minimal fields: Omit
inputif you don’t need calldata - Check status: Filter failed transactions in post-processing if needed
Related Examples
Query Event Logs
Track smart contract events
Query Traces
Analyze internal transactions
Contract Deployments
Monitor new contract deployments
API Reference
View complete API docs
