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 |
|---|---|---|---|---|---|---|---|---|
| 0xd71414ab49af6c74670b2809ff0e41a37a208791 | 0xd7d10d554fb33a37a7720e5666590205dbf5f482 | 0x0000000000000000000000000000000000000000 | false | 1000000 | 7 | 10160 | 2025-06-14T00:00:01.000Z | 0x90daf2a00e5e091fddf7d7e443fba286556235d8931effa28bad8caaf3927888 |
| 0xb481a38d6e2db143055f0745aa6cad6ab48ea24b | 0xd7d10d554fb33a37a7720e5666590205dbf5f482 | 0x0000000000000000000000000000000000000000 | false | 1000000 | 9 | 10160 | 2025-06-14T00:00:01.000Z | 0x90daf2a00e5e091fddf7d7e443fba286556235d8931effa28bad8caaf3927888 |
| 0xa6e9fa1693d9524128cfb3541919329aadbb5dcd | 0xd7d10d554fb33a37a7720e5666590205dbf5f482 | 0x0000000000000000000000000000000000000000 | false | 1000000 | 3 | 10160 | 2025-06-14T00:00:01.000Z | 0x90daf2a00e5e091fddf7d7e443fba286556235d8931effa28bad8caaf3927888 |
Example Query
Example Query
Query with partition filter