Tables
ERC20_Transfer_event
ERC-20 token transfer events decoded from transaction logs, containing sender address, recipient address, and token amount. Primary source for tracking fungible token flows and wallet holdings across EVM-compatible blockchains.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_from | STRING | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_to | STRING | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_value | STRING | Amount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values. |
Sample Data
Sample Data
| in_to | address | in_from | removed | in_value | log_index | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|---|
| 0x804512586a87b952e43528d48af9bb099fe853c0 | false | 1 | 10937857 | 2025-12-14T13:12:25.000Z | 0xed768a4f443b84d960e969fc18b1992358417aa24993d2b4b5ffd8de957ac0b3 | |||
| 0x281aa845fd4fdeacf302abff098c4e33c00074ff | 0xe3047710ef6cb36bcf1e58145529778ea7cb5598 | 0x0000000000000000000000000000000000000000 | false | 996000000000000000000 | 1 | 10937809 | 2025-12-14T13:09:48.000Z | 0xfeedb6bed01e2830ec747de94bbebea56daf2dff3dfdaa662b83582d054410ea |
| 0x3012e9049d05b4b5369d690114d5a5861ebb85cb | 0xe3047710ef6cb36bcf1e58145529778ea7cb5598 | 0x0000000000000000000000000000000000000000 | false | 9990000000000000000000 | 2 | 10942683 | 2025-12-14T17:35:00.000Z | 0x014ae1114d97fcb30d235ba9f026a0130ba14dcd63d6fecce502411bb168bb20 |
Example Query
Example Query
Query with partition filter