Skip to main content
Retrieve all transactions sent to a specific address to track wallet activity, exchange flows, or smart contract interactions.

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

Expected Output

Filter by Function Signature

Query only specific function calls (e.g., ERC-20 transfer function):
Function signature is computed as keccak256("transfer(address,uint256)")[0:4]. The result is 0xa9059cbb.

Monitor Outgoing Transactions

Track transactions from a specific wallet:

Performance Tips

  1. Combine filters: Use both from and to for bidirectional tracking
  2. Filter by sighash: Reduces results to specific function calls
  3. Request minimal fields: Omit input if you don’t need calldata
  4. Check status: Filter failed transactions in post-processing if needed

Query Event Logs

Track smart contract events

Query Traces

Analyze internal transactions

Contract Deployments

Monitor new contract deployments

API Reference

View complete API docs