Skip to main content
Monitor ERC-721 Transfer events across multiple NFT collections to track collection activity, analyze whale movements, or build NFT analytics platforms.

Use Case

NFT transfer tracking enables you to:
  • Build NFT transfer trackers and analytics
  • Monitor collection activity and floor prices
  • Track whale movements across collections
  • Analyze trading patterns and market trends

Code Example

Try it yourself with the interactive query interface below:

Key Parameters

ERC-721 Transfer events have the token ID in topics[3]. ERC-20 transfers don’t have this field (amount is in data instead).

Expected Output

Track Specific Wallet Activity

Monitor NFT transfers for a specific wallet address:

Track Minting Events

Monitor NFT mints (transfers from null address):
Minting is represented as a transfer from the zero address (0x000...000).

ERC-1155 Transfers

For ERC-1155 NFTs, use different event signatures:

Performance Tips

  1. Filter by collection: Specify exact contract addresses
  2. Use topic filters: Filter by from/to addresses at Portal level
  3. Batch processing: Query 10k-50k blocks at a time
  4. Minimal fields: Request only needed fields

Query Event Logs

General event log querying

Index DEX Swaps

Track DEX trading activity

Query Transactions

Monitor transaction activity

API Reference

View complete API docs