Skip to main content

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.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedSTRINGBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_fromSTRINGAddress originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_toaddressin_fromremovedin_valuelog_indexblock_numberblock_timestamptransaction_hash
0x00000000000000000000000000000000000000000x02639ec01313c8775fae74f2dad1118c8a8a86da0x6d6f646c726f7574657265780000000000000000false1315083434413596404982025-10-14T09:27:00.000Z0x02a7a5a80d4aaa9a592d681a6e8e3f9624de651ec5d9d2a5fe8987b4c4afd24a
0x6d6f646c726f75746572657800000000000000000x02639ec01313c8775fae74f2dad1118c8a8a86da0xe21da918e4176b72ef1930ffaa17edcb03b9b739false1315083434392496404982025-10-14T09:27:00.000Z0x02a7a5a80d4aaa9a592d681a6e8e3f9624de651ec5d9d2a5fe8987b4c4afd24a
0xe21da918e4176b72ef1930ffaa17edcb03b9b7390x02639ec01313c8775fae74f2dad1118c8a8a86da0x0000000000000000000000000000000000000000false691051205282296404982025-10-14T09:27:00.000Z0x02a7a5a80d4aaa9a592d681a6e8e3f9624de651ec5d9d2a5fe8987b4c4afd24a
Query with partition filter
SELECT *
FROM `tt-contracts.hydradx.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100