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
0xd4a3639794e85160ef2e953e28eee73a84fd9279false1879729032024-12-12T21:13:38.000Z0x1d8d77674a7b020398f4b302b721c40442fa709d06933a143d262ed70a8025da
0x39c40119052269ba22763b6581a7f3455d8e0f16false1879592992024-12-12T13:01:12.000Z0x65a8a9f38e570651ea3a9efe8467aeb7466582f08b4ee17f1d0fd2d7b48cb883
0xd4a3639794e85160ef2e953e28eee73a84fd9279false1879606812024-12-12T13:52:23.000Z0x05eb8574a670ca011da3d2da72c708916667ee75a233370f1f3596e068f9de99
Query with partition filter
SELECT *
FROM `tt-contracts.viction.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100