Skip to main content

Tables

Factory_PoolCreated_event

Factory contract event emitted when a new liquidity pool is created, recording token pairs and pool configuration parameters. Used for tracking DEX pool deployments and liquidity market initialization.
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_token0STRINGContract address of the first token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_token1STRINGContract address of the second token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_feeSTRINGFee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
in_tickSpacingINT64Minimum price movement increment between adjacent ticks in a concentrated liquidity pool.
in_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_feeaddressin_poolremovedin_token0in_token1log_indexblock_numberin_tickSpacingblock_timestamptransaction_hash
30000xbaceb8ec6b9355dfc0269c18bac9d6e2bdc29c4f0xda6aa607a2a51f25bcbdf98c0923be28d96c42d3false0x50327c6c5a14dcade707abad2e27eb517df87ab50xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb4820617511182602023-06-19T03:40:59.000Z0x090f7bd075ae995433216acc37efb6662c2208f0a99b12cdd59be6fc643d9414
1000xbaceb8ec6b9355dfc0269c18bac9d6e2bdc29c4f0x84b2f2d7e1577d6eebbb2239157cd2d644959ba3false0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca00xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc25121752175912023-06-20T15:20:11.000Z0x158d23629879741b905c116b1c6f8c5f0045c5dd8617f980978bd28921a97f10
30000xbaceb8ec6b9355dfc0269c18bac9d6e2bdc29c4f0x622933c7c880392fac548d7bb994ec826043adc4false0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb480xcaef937ac9a63668460efb0ea92b109bba2fc1ed25718423507602023-10-24T23:51:35.000Z0x82bf4a78e99d09f902ba2a1b7b5b7a8b88458220da86af22e6392cd45ae41037
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_ethereum.Factory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Burn_event

Liquidity removal events from concentrated liquidity pools recording withdrawn token amounts and position tick ranges. Contains owner address, liquidity amount burned, token amounts withdrawn (amount0/amount1), and tick boundaries for tracking position liquidations and TVL changes.
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_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_tickLowerINT64Lower tick boundary of a concentrated liquidity position in a Uniswap V3-style pool. Signed integer representing a discrete price point on the logarithmic tick scale.
in_tickUpperINT64Upper tick boundary of a concentrated liquidity position in a Uniswap V3-style pool. Signed integer representing a discrete price point on the logarithmic tick scale.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_amount0STRINGAmount of token0 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_amount1STRINGAmount of token1 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
addressremovedin_ownerin_amountlog_indexin_amount0in_amount1block_numberin_tickLowerin_tickUpperblock_timestamptransaction_hash
0xf954d40c0c18e707c69318a9e3bd6230d4d56a11false0x2214a42d8e2a1d20635c2cb0664422c528b6a4321409436416293403252361945897520797028286121001334371826302617657828-8872208872202023-07-09T18:07:59.000Z0xe82585868a0f50a0644c85c171bd79b047aa644efc06de99bd0b6f68695832ee
0x87c7056bbe6084f03304196be51c6b90b6d85aa2false0x2214a42d8e2a1d20635c2cb0664422c528b6a432699405117341573446464941463989234705043267445083111481184817165154903817652550-80040-775802023-07-09T00:18:11.000Z0x460034841d05f8273df616ac882ab159bed736cbf98489b02226c88082b58900
0xb3ccf99930023e800b2d27fe3ff15f1db01d51cefalse0x2214a42d8e2a1d20635c2cb0664422c528b6a4321526135435792126528515837727401278095302259336431452203354164017658556-1842601381802023-07-09T20:35:47.000Z0xb70aca5ae0678252a73bfb58fb5486b8ec8b724868667ce9b3bbb714933b7ba8
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_ethereum.Pool_Burn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Collect_event

Concentrated liquidity position fee collection events from Uniswap V3 compatible decentralized exchanges. Records position owner, recipient, collected token amounts, and tick range boundaries for tracking earned trading fees and position management activity.
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_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tickLowerINT64Lower tick boundary of a concentrated liquidity position in a Uniswap V3-style pool. Signed integer representing a discrete price point on the logarithmic tick scale.
in_tickUpperINT64Upper tick boundary of a concentrated liquidity position in a Uniswap V3-style pool. Signed integer representing a discrete price point on the logarithmic tick scale.
in_amount0STRINGAmount of token0 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_amount1STRINGAmount of token1 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
addressremovedin_ownerlog_indexin_amount0in_amount1block_numberin_recipientin_tickLowerin_tickUpperblock_timestamptransaction_hash
0xfa6e8e97ececdc36302eca534f63439b1e79487bfalse0x6b75d8af000000e20b7a7ddf000ba900b4009a8016415276265595956178453192182474770x6b75d8af000000e20b7a7ddf000ba900b4009a8052532023-09-30T08:57:59.000Z0xc606a2b4dfce1ad02dcf90454e60c56d16cca5442dc4a19ac9b1300835d5014d
0x763d3b7296e7c9718ad5b058ac2692a19e5b3638false0x2214a42d8e2a1d20635c2cb0664422c528b6a4321852071612699998282718458732616525182466430x2214a42d8e2a1d20635c2cb0664422c528b6a4321947002029202023-09-30T06:09:59.000Z0x8717d8f1969c7359be9cc62129c431203d6a0830afa3977ce0cc204bf94c1f3b
0xfa6e8e97ececdc36302eca534f63439b1e79487bfalse0x2214a42d8e2a1d20635c2cb0664422c528b6a4321217971062280304228182461580xa626bd40a8c88f59a4cf9b1821a7bd71fad96285-582023-09-30T04:32:47.000Z0x01da93e39168b90ca1533d0e978e04ef9b4bacdacb834bd5a60733ea8b91e94c
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_ethereum.Pool_Collect_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_CollectProtocol_event

Protocol fee collection events from concentrated liquidity pools, recording fees withdrawn by the protocol from trading activity. Contains token amounts collected (amount0, amount1), sender address initiating the collection, and recipient address receiving the fees.
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_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amount0STRINGAmount of token0 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_amount1STRINGAmount of token1 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
addressremovedin_senderlog_indexin_amount0in_amount1block_numberin_recipientblock_timestamptransaction_hash
0x0691f5bd1e12f483acf2e32dc922bb82f1ee7d69false0xcd03e2e276f6eedd424d41314437531f665187b9142710773600174281449862142410959236519780xdbeca8fb948c42634256609bce5a3768c9b3e9eb2025-10-25T04:05:47.000Z0x99b90b585382c78c51d3f330bf184a6bfcf8778d3b8d52f14f1e29a5565313ff
0x0143b80d682d2b6fb8945f47b7d199841ab8184cfalse0xcd03e2e276f6eedd424d41314437531f665187b941227720992976930407650415747579237843930xdbeca8fb948c42634256609bce5a3768c9b3e9eb2025-11-12T16:39:47.000Z0x38d395936cc30922319cbae7911d86bc51ea59f897f9a5a80af03f2e5c294e06
0x0143b80d682d2b6fb8945f47b7d199841ab8184cfalse0xcd03e2e276f6eedd424d41314437531f665187b917832318727275224392615616654576237806490xdbeca8fb948c42634256609bce5a3768c9b3e9eb2025-11-12T04:05:35.000Z0x96da81a95b59ded5d86091f69193894293a455d1fe77fa63af8ea5c605e14def
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_ethereum.Pool_CollectProtocol_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Flash_event

Flash loan events from liquidity pools recording borrowed amounts and repayment fees for both tokens in the pair. Tracks sender, recipient, borrowed quantities, and actual fees paid for arbitrage and liquidation analysis.
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_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amount0STRINGAmount of token0 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_amount1STRINGAmount of token1 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_paid0STRINGAmount of token0 paid as flash loan fee. Numeric string representation of token quantity in smallest denomination.
in_paid1STRINGAmount of token1 paid as flash loan fee. Numeric string representation of token quantity in smallest denomination.
addressremovedin_paid0in_paid1in_senderlog_indexin_amount0in_amount1block_numberin_recipientblock_timestamptransaction_hash
0x4bd3cf2b49ebaf57c95cc1ad8ddd83baa1126835false75942218197972800000x2cc2eb22e945f17637ce2163999aa6bfa3cb68f575759422181979728000000192840300x2cc2eb22e945f17637ce2163999aa6bfa3cb68f52024-02-22T15:27:11.000Z0x24116bffbb48a17504e1cc4d571b46b90e335eb107e1863a83d95d4283afbd0e
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_ethereum.Pool_Flash_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Mint_event

Liquidity provision events emitted when liquidity providers add tokens to concentrated liquidity pools. Records deposited token amounts, tick ranges, liquidity shares, and position owner for DEX pool analytics.
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_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_tickLowerINT64Lower tick boundary of a concentrated liquidity position in a Uniswap V3-style pool. Signed integer representing a discrete price point on the logarithmic tick scale.
in_tickUpperINT64Upper tick boundary of a concentrated liquidity position in a Uniswap V3-style pool. Signed integer representing a discrete price point on the logarithmic tick scale.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_amount0STRINGAmount of token0 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_amount1STRINGAmount of token1 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
addressremovedin_ownerin_amountin_senderlog_indexin_amount0in_amount1block_numberin_tickLowerin_tickUpperblock_timestamptransaction_hash
0xc6c57b16412e9a4e980d3c30f41b4f0dfd8845edfalse0x2214a42d8e2a1d20635c2cb0664422c528b6a432274694660063437421125470x2214a42d8e2a1d20635c2cb0664422c528b6a432259675741218181441737578033665100000000000000000017679886-247400460002023-07-12T20:35:35.000Z0x1456fab0b369a0bc0215997fd1736e00f07abd1e9bf709e1f2614276332ae509
0x135796322ed29933d71baa51e53b7a4bcfb5e4e6false0x2214a42d8e2a1d20635c2cb0664422c528b6a432728115896684403024860x2214a42d8e2a1d20635c2cb0664422c528b6a432165997158842125262822254795000000000000000018095574-216000-760002023-09-09T01:30:35.000Z0xed6d21391e7ece77994119774c365e95a1d59ea3a474956f2db10d9d1bfdb290
0xfdfff5fba010d08138d12279bf2578a3c14df048false0x2214a42d8e2a1d20635c2cb0664422c528b6a4324844691270289287460x2214a42d8e2a1d20635c2cb0664422c528b6a432133170456256722521160231376953475085679918099439-8872728872722023-09-09T14:30:59.000Z0xf7b242813e4b0284860645a5b6d60e1f3af83d50332cac2b05df63621a34fe4a
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_ethereum.Pool_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_SetFeeProtocol_event

Protocol fee configuration change events emitted when liquidity pool fee parameters are updated. Records old and new fee protocol values for both tokens in the pool, tracking governance-initiated fee structure modifications.
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_feeProtocol0OldINT64Previous protocol fee for token0. Integer value representing the fee denominator where the protocol collected 1/x of swap fees before the update.
in_feeProtocol1OldINT64Previous protocol fee for token1. Integer value representing the fee denominator where the protocol collected 1/x of swap fees before the update.
in_feeProtocol0NewINT64New protocol fee for token0. Integer value representing the fee denominator where the protocol collects 1/x of swap fees.
in_feeProtocol1NewINT64New protocol fee for token1. Integer value representing the fee denominator where the protocol collects 1/x of swap fees.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_feeProtocol0Newin_feeProtocol0Oldin_feeProtocol1Newin_feeProtocol1Old
0xa8db21b12794747f8775359cd416311e3fd3313ffalse184223053982025-04-19T20:20:35.000Z0x4009e9f827cfae095a59dd195150f1f49610834d5b80d7d34620b6edf32e05234040
0x0ccb04d2a8b412b5a43df351ae6c5792b513b007false178223053982025-04-19T20:20:35.000Z0x4009e9f827cfae095a59dd195150f1f49610834d5b80d7d34620b6edf32e05234040
0x7503f92ae26cfd8b260b9dcd5e0306af36190a68false183223053982025-04-19T20:20:35.000Z0x4009e9f827cfae095a59dd195150f1f49610834d5b80d7d34620b6edf32e05234040
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_ethereum.Pool_SetFeeProtocol_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Swap_event

Decentralized exchange (DEX) swap execution events recording token exchanges within liquidity pools. Contains sender, recipient, token amounts, liquidity depth, price data (sqrtPriceX96 or tick), and transaction metadata for tracking trading activity and price movements.
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_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amount0STRINGAmount of token0 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_amount1STRINGAmount of token1 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_sqrtPriceX96STRINGSquare root of the price ratio between token1 and token0 encoded as a Q64.96 fixed-point number. Numeric string representation used in concentrated liquidity automated market makers.
in_liquiditySTRINGTotal liquidity available in the pool at the time of the event. Numeric string representation of liquidity in smallest denomination.
in_tickINT64Current tick index of the concentrated liquidity pool after the swap or operation. Integer value representing the price point on the pool’s tick spacing grid.
addressin_tickremovedin_senderlog_indexin_amount0in_amount1block_numberin_liquidityin_recipientblock_timestampin_sqrtPriceX96transaction_hash
0xfa6e8e97ececdc36302eca534f63439b1e79487b-51false0x827179dd56d07a7eea32e3873493835da28669766119978751120-199200564301762727183827618546310xe139ab520c71c6dd7df0af0015c2773002742c0c2023-07-05T11:05:59.000Z790263981493593971176632919590xcd387b9203b8c3d72b9d85345ec20533b276535202fb0444f3a59574b585ee62
0xfa6e8e97ececdc36302eca534f63439b1e79487b-14false0x6b75d8af000000e20b7a7ddf000ba900b4009a803679341924033-7928618972817627271618801844275800x6b75d8af000000e20b7a7ddf000ba900b4009a802023-07-05T11:05:59.000Z791749849186203731678548396310xa664035d096e26507062b003f6e4e129bfa6a44571446b909de14d2bc7ea406a
0xfa6e8e97ececdc36302eca534f63439b1e79487b-3false0x6b75d8af000000e20b7a7ddf000ba900b4009a8027-18726261161872395516176292041491072653700190x3fa5db0910afc2a1e6de45039ea217410fb8641d2023-07-05T17:35:59.000Z792198203119156430235654051090x00d71494a3e78cdb859ff3f5ed9d2f261f8a343c3fa14fed38911558dc2f8ae2
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_ethereum.Pool_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

V3Factory_PoolCreated_event

Uniswap V3 factory pool creation events emitted when new concentrated liquidity pools are deployed, containing token pair addresses, fee tier, tick spacing, and the deployed pool contract address. Used for tracking DEX pool deployments and liquidity pool registry construction.
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_token0STRINGContract address of the first token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_token1STRINGContract address of the second token in the trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_feeSTRINGFee amount charged for the transaction or operation. String-encoded integer value representing the fee in the smallest unit of the relevant token or currency.
in_tickSpacingINT64Minimum price movement increment between adjacent ticks in a concentrated liquidity pool.
in_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_feeaddressin_poolremovedin_token0in_token1log_indexblock_numberin_tickSpacingblock_timestamptransaction_hash
30000xbaceb8ec6b9355dfc0269c18bac9d6e2bdc29c4f0xf1cac03319873169012621ef545fa33090217516false0x5a1de1f27beb27c9fe4e0ecbf2fe4e51fff3d8d60xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc238717958511602023-08-20T21:02:35.000Z0x0e2aa2e9cb63cd69362d3cf1ebc7c3a4cb774268dd9903eab0200c91388b6ef4
1000xbaceb8ec6b9355dfc0269c18bac9d6e2bdc29c4f0xfdfff5fba010d08138d12279bf2578a3c14df048false0x9d409a0a012cfba9b15f6d4b36ac57a46966ab9a0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc22221733726812023-05-25T16:12:59.000Z0xe38d2b83fbf467a319c9c57fb6f48723603ad682b35b9b2cddb37b9a417dac8d
100000xbaceb8ec6b9355dfc0269c18bac9d6e2bdc29c4f0x98420b1afdb2353fe5c77f20d8f541b4dbd18aecfalse0x9bf1d7d63dd7a4ce167cf4866388226eeefa702e0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2244173353022002023-05-25T09:33:59.000Z0x27ddfb6a913f75827d3df18c70d3aa4c43c71b6646e5fcd76cabe8d173073a6a
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_ethereum.V3Factory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100