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
0x07c0003390df7d1460a57d775bf3bf80205e391bfalse02913502023-10-12T19:04:19.000Z0xc2b1d43e434726ca1c20a9828061c334431965ba6179144bfa02ce507a53d3fe
0x07c0003390df7d1460a57d775bf3bf80205e391bfalse02915862023-10-12T19:43:39.000Z0x09102b4795f1dac8c880a4c32a697fd3032b773ea74f9680780786fa5fb5e965
0x344d69660016e12bb5ec2734598518819e6022e50x096604d07dd13cb227f0be6fe0748aab6d8154a00x344d69660016e12bb5ec2734598518819e6022e5false2000000000000000000000002894802023-10-12T13:52:39.000Z0x754d0de01e00b3f04c49b903dd54d594a5d753efea0071a772ab67804506dcfe
Query with partition filter
SELECT *
FROM `tt-contracts.manta.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100