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 |
|---|---|---|---|---|---|---|---|---|
| 0x4f059f8d45230cd5b37544e87eebba033a5f1b17 | 0xdeaddeaddeaddeaddeaddeaddeaddeaddead0000 | 0x9f034dddd9c6464e827f648110dda4b6a3a42844 | false | 314504468215904512 | 0 | 974091 | 2023-03-03T01:18:29.000Z | 0xd3bf873b09454d0b8572636dcbf189127b9620be8fd6be17cb12a9f5677b62f1 |
| 0x9f034dddd9c6464e827f648110dda4b6a3a42844 | 0x66a2a913e447d6b4bf33efbec43aaef87890fbbc | 0x4f059f8d45230cd5b37544e87eebba033a5f1b17 | false | 515983447 | 1 | 974091 | 2023-03-03T01:18:29.000Z | 0xd3bf873b09454d0b8572636dcbf189127b9620be8fd6be17cb12a9f5677b62f1 |
| 0x547b227a77813ea70aacf01212b39db7b560fa1c | 0xdeaddeaddeaddeaddeaddeaddeaddeaddead0000 | 0x9f034dddd9c6464e827f648110dda4b6a3a42844 | false | 354767373487680256 | 0 | 974093 | 2023-03-03T01:18:58.000Z | 0x46d4fd8b2c3508404f22efdf8cf657e0fe11e632e4c6515a0189adc0746834ad |
Example Query
Example Query
Query with partition filter