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.
removedBOOLBoolean 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
0x6eda206207c09e5428f281761ddc0d300851fbc8false668487612025-06-27T00:01:52.000Z0x4a08e9425e6c9e6f72d76fdb7446a7249ac402290ac19e0486109ae589afd620
0x6eda206207c09e5428f281761ddc0d300851fbc8false5468487702025-06-27T00:02:00.000Z0x0a77043efb6e15bfe5fc34490b03134e848ee3b76ac32301d5d91a7a4535c1ae
0x6eda206207c09e5428f281761ddc0d300851fbc8false668488252025-06-27T00:02:55.000Z0x758435dd9d84687a47835af73cc09434fa4fcff7ab11ffd0f183e60d7e5e8038
Query with partition filter
SELECT *
FROM `tt-contracts.hyperevm.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100