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
0xc7247df0e97353d676d78f1cc55d3ce39ee32be10x0000000088827d2d103ee2d9a6b781773ae03ffb0x0000000000000000000000000000000000000000false3000000000000000000001425943182025-11-21T22:47:38.000Z0x1a4fea24e3a096bb0374b8c95acfae57dd3b1427c9cd14caf5e652ba62af7626
0xc7247df0e97353d676d78f1cc55d3ce39ee32be10x0000000088827d2d103ee2d9a6b781773ae03ffb0x0000000000000000000000000000000000000000false1900000000000000000001425937252025-11-21T22:41:31.000Z0x3172c228665f1bef73fc3d4363a947c3bbbf3be87cc0405ac8b060a5bc7ed63f
0xc7247df0e97353d676d78f1cc55d3ce39ee32be10x0000000088827d2d103ee2d9a6b781773ae03ffb0x0000000000000000000000000000000000000000false1000000000000000000001425948062025-11-21T22:52:44.000Z0x22cf25a317806d99019489ff78bb3bf497db03ca863448e74f521e24b07b34fb
Query with partition filter
SELECT *
FROM `tt-contracts.injectiveevm.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100