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 |
|---|---|---|---|---|---|---|---|---|
| 0x3c65291c5f05dc767e14e81bd367ab63448d7808 | false | 1 | 157858320 | 2025-07-18T00:00:50.000Z | 0x2ebaf12bbb19ed7983538b789e1416c91d6a99d66c458901ef134b9a13d3a0ee | |||
| 0x3c65291c5f05dc767e14e81bd367ab63448d7808 | false | 11 | 157858396 | 2025-07-18T00:01:27.000Z | 0xa4a25abef8c6aeb2f27e418ac0a2657826f1197ca82b20e1837109e25a37e06c | |||
| 0x3c65291c5f05dc767e14e81bd367ab63448d7808 | false | 7 | 157858485 | 2025-07-18T00:02:12.000Z | 0x5db12cc6af9e96b41373bc69787d648e3c1c19ad6be52dde64829a3e5eee4a39 |
Example Query
Example Query
Query with partition filter