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 |
|---|---|---|---|---|---|---|---|---|
| 0x08c6f91e2b681faf5e17227f2a44c307b3c1364c | 0x06efdbff2a14a7c8e15944d1f4a48f9f95f663a4 | 0x8affa2de8c2a7facb9626800ba3c7e2cec5965d6 | false | 129502401 | 1 | 16255329 | 2025-06-06T00:00:03.000Z | 0x84e8ea7ef6067a1ff05c6cd8eb5e6f5867c90d6287553038ebb1f165bcf70a06 |
| 0x8affa2de8c2a7facb9626800ba3c7e2cec5965d6 | 0x08c6f91e2b681faf5e17227f2a44c307b3c1364c | 0x0000000000000000000000000000000000000000 | false | 117951203 | 2 | 16255329 | 2025-06-06T00:00:03.000Z | 0x84e8ea7ef6067a1ff05c6cd8eb5e6f5867c90d6287553038ebb1f165bcf70a06 |
| 0x9623e86df854ff3b48f7b4079a516a4f64861db2 | 0x06efdbff2a14a7c8e15944d1f4a48f9f95f663a4 | 0x0078c5a459132e279056b2371fe8a8ec973a9553 | false | 4340000 | 1 | 16255330 | 2025-06-06T00:00:09.000Z | 0x72880fbc1a1e1db5714a21d7a691f638344a70697b0fe6076b195e0b3a50d3c5 |
Example Query
Example Query
Query with partition filter