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
0x2b7cfe0f24c18690a4e34a154e313859b7c6e342false0179888732025-02-19T00:37:59.000Z0x559813cc97c780fbfe93673e5c9afed5183864ca7b8ebfe3ef8f1be70545c8d0
0x2b7cfe0f24c18690a4e34a154e313859b7c6e342false2179888732025-02-19T00:37:59.000Z0x03b602bebbdddabe744c0e68230f3ae9fe4e0c04e4d1357563bf4a557020aa81
0x2b7cfe0f24c18690a4e34a154e313859b7c6e342false3179888732025-02-19T00:37:59.000Z0x29062be809baac2202df7f2aba3d67178403d994f62759a362aac524d3e3535d
Query with partition filter
SELECT *
FROM `tt-contracts.flowevm.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100