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
0x8671120aa1ffbe4f335c64f0148904ca36c7ae8b0x0096c683d352e97038799fae923077a10dc2e4600x0000000000000000000000000000000000000000false600000000000000000000494186562025-03-17T03:31:40.000Z0xae7450dffdfccd67fc91343de83170b27487d4476ab05dcd5d9adcab1d719db0
0xb20a3e446462aa0d4299ea1a112f7bdc929ffd740x00c46996ac5dedce6c2700fc4f269eeaec8fc1620x0000000000000000000000000000000000000000false600000000000000000000495736192025-03-17T16:19:57.000Z0x4557853d67052a839bae38c39d13db87bd31524ebd428ae4fd217721d0196f78
0xdedd4acf18a4dff7f3c190d6c56e2231a4fb1d750x00c46996ac5dedce6c2700fc4f269eeaec8fc1620x0000000000000000000000000000000000000000false1000000000000000000000495534702025-03-17T14:35:41.000Z0x1fb82e78d403c26941cf31f6dddf597ec3e7c31594adf72ddf9ce67f37671929
Query with partition filter
SELECT *
FROM `tt-contracts.gravityalpha.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100