Skip to main content

Tables

ERC1155_TransferBatch_event

TransferBatch events from ERC-1155 (Multi-Token Standard) contracts containing operator, sender, recipient, and arrays of token IDs with corresponding quantities for batch transfers. Used for tracking multi-token movements including mints, burns, and transfers in gaming assets, collectibles, and semi-fungible tokens.
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_operatorSTRINGAddress authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string.
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_idsARRAY<STRING>Array of token identifiers involved in the batch operation. Numeric strings representing token IDs, which may be sequential integers for fungible positions or large integers for ERC-1155 token types.
in_valuesARRAY<STRING>Array of token quantities transferred in the batch operation corresponding to the token IDs in in_ids. Numeric strings representing amounts, with precision and scale determined by the specific token contract implementation.
in_toin_idsaddressin_fromremovedin_valueslog_indexin_operatorblock_numberblock_timestamptransaction_hash
0xc40b51598a1c20afc5ea6f130c8447eae445c613[]0x8d53afbeb62c18917b5f71385d52e8ba876697940x0000000000000000000000000000000000000000false[]30x0000000000000000000000000000000000000000180142132023-08-28T16:04:23.000Z0xc16741c7bf160611ac973a8f8fc6641ead30da041e577545c02242be6428c09c
0x0b9020d4e32990d67559b1317c7bf0c15d6eb88f[“0”]0xdd6e7ff87ce5e19f7856280a24f1eec6129472480x0961482b4efaa73e69c07568c742a716d2fbcf46false[“5310727893518518518518”]4470x0b9020d4e32990d67559b1317c7bf0c15d6eb88f180165292023-08-28T23:51:11.000Z0xb02bfde88b9920ff63fd151d5cecdacb732fe1701a555dfa4e8a1c0c00086154
0x0b9020d4e32990d67559b1317c7bf0c15d6eb88f[“0”]0xdd6e7ff87ce5e19f7856280a24f1eec6129472480xc10960ddbfc177106dc37af242e04d710635b6c0false[“844522222222222222222”]3120x0b9020d4e32990d67559b1317c7bf0c15d6eb88f180108112023-08-28T04:39:23.000Z0xe5741d46067915a93c12f4bd0102420f8188caea9a05aaccf287c017a5c81217
Query with partition filter
SELECT *
FROM `tt-contracts.ethereum.ERC1155_TransferBatch_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

ERC1155_TransferSingle_event

ERC-1155 (Multi Token Standard) single token transfer events emitted when one token ID is transferred between addresses. Contains operator, sender, recipient, token ID, and transfer amount for tracking individual NFT and semi-fungible token movements within multi-token contracts.
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_operatorSTRINGAddress authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string.
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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_idin_toaddressin_fromremovedin_amountlog_indexin_operatorblock_numberblock_timestamptransaction_hash
979962339870662498332958932726294485030xb9f38580eaafd0b8b2803deadc4a1c93ff5513bf0x01f596a445873de2796596a1a80142d220a4cac90x0000000000000000000000000000000000000000false1740x457044dff5886a9eb9365015704e1b747f384194122343862021-04-13T22:13:53.000Z0xa8d4ee2816dd3901dd828f3f04788b21427cc118276067e9dbd9267f7d37c210
10x0d09aa156710865f9ffc9084a48a84f28bf6f1db0x085f8d8922dfeacbed279575578f608c6985ac8b0x7cabb73f5b840b245ec2528751445da1f6dd7eeefalse12110x4fee7b061c97c9c496b01dbce9cdb10c02f0a0be122290032021-04-13T02:18:40.000Z0x26273d05a303fb41f3921f9f5422e3ac9b680e99ca712ccedb0a38912850ba57
10x7d63002e11607bd1eb954b5f7664485305910ba60x0bb7c1d061b56907a2444beb0db5e5289679dee90x27e6826f8e6b2c15b223e2fcd78eb93bfed7a206false52400x4fee7b061c97c9c496b01dbce9cdb10c02f0a0be122315292021-04-13T11:40:25.000Z0xbce97146cebb005713a7c1fe9ecd79f06632beaebe3d31a6ccdec5974358852c
Query with partition filter
SELECT *
FROM `tt-contracts.ethereum.ERC1155_TransferSingle_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

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
0x3f5ce5fbfe3e9af3971dd833d26ba9b5c936f0be0x0000000000085d4780b73119b644ae5ecd22b3760xd0460e3d9ecc32ef4bb1ad6416729d80f35aa129false213758060840000000000011487879682019-10-22T03:49:19.000Z0x700770a03899bc0a2197f11668ba8952f044fc3ca0e983449e51194ab4a6484a
0x21c0ff0d7df61c8f8c18631bdde315d778ea02db0x0000000000085d4780b73119b644ae5ecd22b3760x1e62e1b83647bd41e505b1fb0d54a96729ab310dfalse400000000000000000000087910402019-10-22T15:25:36.000Z0x963dad2e83e17087bd8dcfd3d15e51e41a81db8673387a6aa959cb84da3e73de
0xfc05d554b7313a6213d1d0e2f131aa19834c32170x0000000000085d4780b73119b644ae5ecd22b3760xfbb1b73c4f0bda4f67dca266ce6ef42f520fbb98false50000000000000000000887920642019-10-22T19:13:47.000Z0x9b5586132f2a1940f9b7cd82462b0decc73f628c4496b4ec871c304fe8cb8448
Query with partition filter
SELECT *
FROM `tt-contracts.ethereum.ERC20_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

ERC721_Transfer_event

Non-fungible token (NFT) transfer events emitted by ERC-721 compliant smart contracts, capturing the movement of unique tokens between addresses. Contains sender, recipient, token ID, and contract address for tracking NFT ownership changes and marketplace activity across chains.
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_tokenIdSTRINGUnique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID.
in_toaddressin_fromremovedlog_indexin_tokenIdblock_numberblock_timestamptransaction_hash
0xc8e302737ac30317c76166635c3591ef12c596900x9980b3aa61114b07a7604ffdc7c7d04bb6d8d7350x602f51dcbeda58dc247fe73f1800d3e4fc2115bbfalse770611172759042023-05-17T00:47:23.000Z0xcf06fc85922561da24af37052f93a8ee6339808e564cb5f171b9046ca37822ce
0x8252df1d8b29057d1afe3062bf5a64d503152bc80xb7f7f6c52f2e2fdb1963eab30438024864c313f60xd79b937791724e47f193f67162b92cdfbf7abdfdfalse3194424172761602023-05-17T01:39:47.000Z0x7b3e893519bc697ac343f96d19fa4f208b430f2665c6936c6dfb84136fe0c4fc
0x5aa4910d42cbadddc50866a44dca63738a4c30f70x34cadc2ff14d57d6c3f806b5d798c6a27642af2e0x9675b063aa16736a218299c089b63b0b2e20fc20false2662692172769282023-05-17T04:15:47.000Z0xf2740754e3253e80f49cb1f70169fffd684011844cac99a2c020afbb029445b1
Query with partition filter
SELECT *
FROM `tt-contracts.ethereum.ERC721_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100