- send - Outgoing transfers of tokens or native assets
- receive - Incoming transfers of tokens or native assets
- mint - Token minting activities
- burn - Token burning activities
- swap - Token swaps and exchanges
- approve - Token approval transactions
- call - Generic contract interactions that don’t fall into the above categories
- Native token transfers
- ERC20 token transfers with metadata (symbol, decimals)
- ERC721 (NFT) transfers with token IDs
- Contract interactions with decoded function calls
Activities are mostly indexed events. There are, of course, no events for native token transfers (wen 7708?). We do have a heuristic to catch very simple native token transfers, where the native token transfer is the entirety of the transaction, but unfortunately we don’t currently catch native token transfers that happen within internal txns.
Unsupported Chain IDs
When you request chain IDs that are not supported, the API will return a warning in the response instead of throwing an error. Thewarnings field will contain information about which chain IDs were not supported, and activity will be returned only for the supported chains.
For example, if you request chain_ids=1,9999,10,77777777777:
Invalid chain ID tags (like typos in tag names) will still return errors as designed. Only invalid numeric chain IDs generate warnings.