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
0xf22eebf6aadb144d860e7569327911e2ea9b72f50x0597b72dd532a78a11c16606cd7525d1277bbc7f0x19337585d1defe8de9a955b0090aeac5a498e3b6false65000000000000000000000373211522024-10-16T10:34:35.000Z0x1d938eee4f62fccd32a22bbfa84d44370706d056d20fa504824f2b1b0bf58c32
0xf32e4cb5f1f2a0bd080ec97cbbe1d8568a6f450e0x0f60356f6ecc22fc61f01ace3ae1f68e7c8462b70x0000000000000000000000000000000000000000false100000000000000000373424902024-10-16T16:30:13.000Z0x32972b121983e1ee49438d4f905aed451d3ecf9c299f77033b7d37e49e5202d8
0x2fe753f7c92e8edecf37e0fb5c27dc30b05f7b730x0f60356f6ecc22fc61f01ace3ae1f68e7c8462b70x0000000000000000000000000000000000000000false100000000000000000373477882024-10-16T17:58:31.000Z0xcf848e5172f68ddcc7da99f369ad4ce7dcc989d46972f75f96f66e904883582e
Query with partition filter
SELECT *
FROM `tt-contracts.opbnb.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100