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
0x5252a3c0eba07bf5653648165abfccbe5feebce30x9895d81bb462a195b4922ed7de0e3acd007c32cb0x0000000000000000000000000000000000000000false1000000000000007961952025-09-13T00:47:40.000Z0x45ec4d1a78908ef64412ba64a033a7ec1ae2bde10d0b715af26534e567fe9b17
0x16581fcb162ecaae0c8658227d3028f035b4b7fcfalse229528172025-10-08T00:06:39.000Z0xaa6bcadfdf1f7d27a30bb07f0db342eccda6a71b150bbbb656e6459b6fec7eac
0xb4ab5b0a52432ea35030459958059a7b31e191c4false1829533452025-10-08T00:15:27.000Z0x56bd05baa98fec1fa0b24f31718c3982a7a279cf6b69f9131ae178b25d05fb16
Query with partition filter
SELECT *
FROM `tt-contracts.plasma.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100