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
0x804512586a87b952e43528d48af9bb099fe853c0false1109378572025-12-14T13:12:25.000Z0xed768a4f443b84d960e969fc18b1992358417aa24993d2b4b5ffd8de957ac0b3
0x281aa845fd4fdeacf302abff098c4e33c00074ff0xe3047710ef6cb36bcf1e58145529778ea7cb55980x0000000000000000000000000000000000000000false9960000000000000000001109378092025-12-14T13:09:48.000Z0xfeedb6bed01e2830ec747de94bbebea56daf2dff3dfdaa662b83582d054410ea
0x3012e9049d05b4b5369d690114d5a5861ebb85cb0xe3047710ef6cb36bcf1e58145529778ea7cb55980x0000000000000000000000000000000000000000false99900000000000000000002109426832025-12-14T17:35:00.000Z0x014ae1114d97fcb30d235ba9f026a0130ba14dcd63d6fecce502411bb168bb20
Query with partition filter
SELECT *
FROM `tt-contracts.mantraevm.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100