1s_events_live
Query raw event logs from blockchain nodes using eth_getLogs. Filter by contract address and event signature topic to return log entries with topics, data, and block context.
Instructions
Query raw event logs via eth_getLogs directly from the node. Filter by contract address and/or topic0 (keccak256 hash of event signature, e.g. Transfer(address,address,uint256)). Block params are hex-encoded (e.g. 0x1234). Returns raw log entries with topics, data, and block context. WARNING: Keep block ranges small (10 blocks or fewer) to avoid huge responses. Always specify a contract address when possible. Omitting from_block/to_block queries only the latest block.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| contract | No | Contract address to filter | |
| topic | No | Event topic0 hash (0x...) | |
| 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" |