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
0xce300b00aa9c066786d609fc96529dbedaa30b76false0140472502021-11-01T22:25:35.000Z0xdb19ce2db7c61a556c72f7b694202861e0208c505ec5d95efb5362cf0c33a237
0xce300b00aa9c066786d609fc96529dbedaa30b76false0140426872021-11-01T16:04:30.000Z0x9d30831de47bac55344224ffbecbaeb5fd7687eb445f3d9c0b6a23ab673a77a3
0xce300b00aa9c066786d609fc96529dbedaa30b76false0140429612021-11-01T16:27:20.000Z0x56bbbc8bf430fdb3c6a059483ba9703e99e1fe87b26b39a366a229d947417e9a
Query with partition filter
SELECT *
FROM `tt-contracts.iotex.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100