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
0x12e66c8f215ddd5d48d150c8f46ad0c6fb0f4406false19194305362025-04-10T18:27:19.000Z0x0315f46ce534fe74a27228e56b9478373cfa660f916eef8e36e278fff3f833f8
0x12e66c8f215ddd5d48d150c8f46ad0c6fb0f4406false3192960042025-04-10T04:05:33.000Z0x09bc147c84f9b3d7a02d88fd38ce342d57cb21d3d18ac00d9e4fac97d0719c1b
0x12e66c8f215ddd5d48d150c8f46ad0c6fb0f4406false22193507242025-04-10T10:18:19.000Z0x2281096fcbf4ffa528d180e393889505418c7b8c68409fa814d308fbdf5615ea
Query with partition filter
SELECT *
FROM `tt-contracts.sonic.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100