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
0x8afa0c6a5e5397bcf648487a648a47f25fda28ff0x00471c596755c5eb197a3e43683534b4858c2c0f0x0000000000000000000000000000000000000000false155010147133434804660114301662025-03-17T07:19:31.000Z0x8006c66efc67ddeca74a828554d8afe5dccc1cc37d8a04572b32009e9e066424
0x5870547b7deab4f8c5a93f48d88ec413b12da6020x0097ee9d86a9146afd9da7a59c0fc06c7afa8ca50x5a6325aba0a376aa08cc322709fdeb864977e71ffalse99000000000000000000000001114372422025-03-17T11:15:23.000Z0xbcc53e46c625304f36c565fda66b2928835a9b41b9d3a6f5118215a1a55e85aa
0x5870547b7deab4f8c5a93f48d88ec413b12da6020x0097ee9d86a9146afd9da7a59c0fc06c7afa8ca50x5a6325aba0a376aa08cc322709fdeb864977e71ffalse990000000000000000000000000114372712025-03-17T11:16:21.000Z0xbbbd06d7ff1445ba93b111b4014317137104e4e5c390f92e6e014e30edb42bcd
Query with partition filter
SELECT *
FROM `tt-contracts.worldchain.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100