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
0x18468ef37051d08355c7a52d4cdbed50a5bfd75e[“1”]0x2f05e799c61b600c65238a9df060caba63db8e780x0000000000000000000000000000000000000000false[“1”]1230x2f05e799c61b600c65238a9df060caba63db8e78491648192022-10-14T16:45:43.000Z0xb4c0c42bd56dc27e510539fff35f104f4560a9e71520ddb48590d38f0c205c18
0xf77997d6314791da9828275c289122e47554130b[“1”]0x2f05e799c61b600c65238a9df060caba63db8e780x0000000000000000000000000000000000000000false[“1”]10x2f05e799c61b600c65238a9df060caba63db8e78491768562022-10-14T20:32:16.000Z0xda0e42e2aaeee3d3ff19c136c4732b74d9b8a2147c99f0fc383fb76c3ba24052
0xab88170aa3d24b1f6c1b37ffba5d3d2c4382afa2[“1”]0x2f05e799c61b600c65238a9df060caba63db8e780x0000000000000000000000000000000000000000false[“1”]110x2f05e799c61b600c65238a9df060caba63db8e78491635652022-10-14T16:23:16.000Z0xd1ce1f73944bf40368e171e951cdb88369e450437c8ca9ef6c11b577d87ee098
Query with partition filter
SELECT *
FROM `tt-contracts.fantom.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
00x0198db21cc1ca21bc8cb01d72c19ceaf3afbfdc20xd1986bb56dd33f8851ed13621d251814dcb3553e0x0000000000000000000000000000000000000000false11120x0198db21cc1ca21bc8cb01d72c19ceaf3afbfdc2447580342022-08-12T16:16:02.000Z0x8e653066d2820981fdf4b2404abdd2e1f5571e5a339930bc87b2914a343509c8
00x02881e97bc6c1b268d5797c608276e8675bde3f70xd1986bb56dd33f8851ed13621d251814dcb3553e0x0000000000000000000000000000000000000000false110x02881e97bc6c1b268d5797c608276e8675bde3f7447575412022-08-12T16:06:47.000Z0x91df4e17b573dbfe0406c4b08572583b4d916f69edd15f7a2447fb71423dd3e9
00x02bfd87fb5b3a7a2e643c0af9a72e88e0f8680770xd1986bb56dd33f8851ed13621d251814dcb3553e0x0000000000000000000000000000000000000000false1640x02bfd87fb5b3a7a2e643c0af9a72e88e0f868077447572892022-08-12T16:01:06.000Z0xe7c3729c462f586ec7bba1b6593c0c2db54fd1afab33c65e39de19e086230858
Query with partition filter
SELECT *
FROM `tt-contracts.fantom.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
0x2ab5c606a5aa2352f8072b9e2e8a213033e2c4c9false11534151692023-01-08T04:47:06.000Z0xe7b2e401d0105e51bab2358fcd8a2b28681ea68b72751d5a92bb61917ce61ed5
0x77fa9d9d4ef0b3862c6f5b279ce0fa576888bc31false11534080012023-01-08T01:14:10.000Z0xbf02b94c3201f4c0315f854d0310df39f02e6a5cf62b52d130cce39b410eace1
0x946d51c2919a6abd401ba0f16e3d3647cf245b19false43534264342023-01-08T10:20:03.000Z0x6570c0575f0406339d49001e96fb5ea164030c1f9dcda4c5cbb60fd888665f8f
Query with partition filter
SELECT *
FROM `tt-contracts.fantom.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
0x44e314190d9e4ce6d4c0903459204f8e21ff940afalse0549340452023-02-02T18:25:04.000Z0xa7deb097b15fd60a6bbaf6f88936db80c81abf6e6fe63d9a04aec2bcd12134b5
0x5cc61a78f164885776aa610fb0fe1257df78e59bfalse2549340452023-02-02T18:25:04.000Z0xa7deb097b15fd60a6bbaf6f88936db80c81abf6e6fe63d9a04aec2bcd12134b5
0x04068da6c83afcfa0e13ba15a6696662335d5b75false2549096002023-02-02T10:27:12.000Z0x26166a5993e1a1f9092f4e71d32df62107912b862597db075c7498636c48b7d0
Query with partition filter
SELECT *
FROM `tt-contracts.fantom.ERC721_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100