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
0x2483cd7f6bde4cc603cd9587273692791e7b0569false150465282024-04-05T23:20:40.000Z0xe4ecba9dd250c0efffecb04068b95b1aa538fed25df9f1c091a19dee63179996
0x4ac8a115131778c748e58e77cb7e58f850a31325false250472962024-04-05T23:46:16.000Z0x96208fca648d73bf5af67bb1c718c41eb79da6e3134ab25401e13e2a587cd685
0x2b1618e3e2e871d334b60cbe802ed18e25edfb0cfalse150472962024-04-05T23:46:16.000Z0x96208fca648d73bf5af67bb1c718c41eb79da6e3134ab25401e13e2a587cd685
Query with partition filter
SELECT *
FROM `tt-contracts.immutablezkevm.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100