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
0x1195cf65f83b3a5768f3c496d3a05ad6412c64b7false2132356502025-04-07T00:00:09.000Z0x7def71f768234442b1eb6dec25df9a99bdbab229cd4547a51cc45192daf4c953
0x1195cf65f83b3a5768f3c496d3a05ad6412c64b7false1132356672025-04-07T00:00:26.000Z0xe0050c8f923b462d66411fc727d661d92befe6d3e137d51b59370fa2b1ad1e60
0x1195cf65f83b3a5768f3c496d3a05ad6412c64b7false3132356702025-04-07T00:00:29.000Z0xa94d9513cb20a07bb2bbaf982bc340495538c87f8ffdbe611dcf98302b73775c
Query with partition filter
SELECT *
FROM `tt-contracts.unichain.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100