1s_erc20_transfers_live
Query ERC20 transfer events (from, to, value) by token contract or wallet address using eth_getLogs. Returns decoded sender, recipient, and value for small block ranges.
Instructions
Query ERC20 Transfer(from, to, value) event logs via eth_getLogs directly from the node. Filter by token contract and/or wallet address. Block params are hex-encoded (e.g. 0x1234). Returns decoded transfer events with sender, recipient, and value. WARNING: Keep block ranges small (10 blocks or fewer) to avoid huge responses. Omitting from_block/to_block queries only the latest block.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | No | ERC20 token contract address | |
| wallet | No | Wallet address to filter transfers | |
| from_block | No | Start block in hex (e.g. 0x1234) | |
| to_block | No | End block in hex | |
| network | No | Blockchain network: "ethereum" (default), "sepolia", "avax" |