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
1000xafe208a311b21f13ef87e33a90049fc17a7acdec0xefc63a8112e7d20ffe84862dd9b4e23e93635836false0x4f604735c1cf31399c6e711d5962b2b3e0225ad30x8a567e2ae79ca692bd748ab832081c45de4041ea133577063012025-05-19T16:16:28.000Z0x38bd58b91481df4edafb3d6aa315b60f55010ab17b379a370a16c2a69320f02a
1000xafe208a311b21f13ef87e33a90049fc17a7acdec0x2ac5baa668a8a58fd0e302b9896717484fd217b0false0x48065fbbe25f71c9282ddf5e1cd6d6a887483d5e0x8a567e2ae79ca692bd748ab832081c45de4041ea743236304112025-04-10T05:43:19.000Z0xcd9032045b9c09e047bcfe70c6f99923b881335ef5c851ca2f9f8f64c66dfa53
30000xafe208a311b21f13ef87e33a90049fc17a7acdec0xc9083503727495569de1973c5d44eb546d31474afalse0x2e6c05f1f7d1f4eb9a088bf12257f1647682b7540x471ece3750da237f93b8e339c536989b8978a4382032426854602025-04-10T23:26:52.000Z0x3aa631b869438250ae9048abc2adb54d0edb135e7f8f4fff35c14c4e3306d3c3
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_celol2.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
0xc5a5caebf3bf6220a3efa222710ab488943a73f8false0x25513a5f10492696b7bd552441d1d099591b1a02175123295561651407740719769743777376134788069-8872722599952025-05-08T07:20:27.000Z0x97aaed292cc9da2f6d94b36674af115762423abd9c4f2086a016c111019b64e6
0xc5a5caebf3bf6220a3efa222710ab488943a73f8false0x25513a5f10492696b7bd552441d1d099591b1a02020034788069-8872722599952025-05-08T07:20:27.000Z0x97aaed292cc9da2f6d94b36674af115762423abd9c4f2086a016c111019b64e6
0xc5a5caebf3bf6220a3efa222710ab488943a73f8false0x25513a5f10492696b7bd552441d1d099591b1a02010034818562-8872722601262025-05-08T15:48:40.000Z0x173eb31db32ab6d1310babf94f6a97963b4cbfc18df692e3e1242ef51c181f27
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_celol2.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
0xf55791afbb35ad42984f18d6fe3e1ff73d81900cfalse0x3d79edaabc0eab6f08ed885c05fc0b014290d95a2300345024690xe01548cd36a461cf21e3b661f61cc6194bc8961f2013232013242025-05-05T00:00:27.000Z0xcc65df847ad50c63a63c5afada67c7a60c4295cc1ae73ae698a3711e6d795268
0xf55791afbb35ad42984f18d6fe3e1ff73d81900cfalse0x3d79edaabc0eab6f08ed885c05fc0b014290d95a21025080675846282935345024690xfa1457caf448c66ce3c2e619ccd4fcfd317b61f62013232013242025-05-05T00:00:27.000Z0xcc65df847ad50c63a63c5afada67c7a60c4295cc1ae73ae698a3711e6d795268
0xf55791afbb35ad42984f18d6fe3e1ff73d81900cfalse0x3d79edaabc0eab6f08ed885c05fc0b014290d95a20025054606235253216345078700xfa1457caf448c66ce3c2e619ccd4fcfd317b61f62013492013502025-05-05T01:30:28.000Z0xfcfa13cfcb4c28947f64425b9a77bbcaa82e801d9cf6978505ba3c9fbf80ad7a
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_celol2.Pool_Collect_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.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_celol2.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
0xc5a5caebf3bf6220a3efa222710ab488943a73f8false0x25513a5f10492696b7bd552441d1d099591b1a023863959888938060x25513a5f10492696b7bd552441d1d099591b1a0215017191529626909495746534788069-8872722601262025-05-08T07:20:27.000Z0x97aaed292cc9da2f6d94b36674af115762423abd9c4f2086a016c111019b64e6
0xc5a5caebf3bf6220a3efa222710ab488943a73f8false0x25513a5f10492696b7bd552441d1d099591b1a02314447433046039460x25513a5f10492696b7bd552441d1d099591b1a0217115407413320347880692601272636932025-05-08T07:20:27.000Z0x97aaed292cc9da2f6d94b36674af115762423abd9c4f2086a016c111019b64e6
0xc5a5caebf3bf6220a3efa222710ab488943a73f8false0x25513a5f10492696b7bd552441d1d099591b1a023864130281641640x25513a5f10492696b7bd552441d1d099591b1a0217016851874482731313861934818562-8872722597262025-05-08T15:48:40.000Z0x173eb31db32ab6d1310babf94f6a97963b4cbfc18df692e3e1242ef51c181f27
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_celol2.Pool_Mint_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
0x0d76866f78fcbca2730e60c5997d59d6ba585613-86175false0x00000000000130ced6024c216d5636f216173feb8-1131469415412011367682053902045746289833033653179848860933087664321030x00000000000130ced6024c216d5636f216173feb2025-04-18T00:00:11.000Z10658939456489527407771107490x03b44614d4ee8592c22acdae1523db53177a7c1a234d29ee0d0ec0d29fa6cafc
0x0d76866f78fcbca2730e60c5997d59d6ba585613-86173false0x00000000000130ced6024c216d5636f216173feb15-1251756769694324040182272659023798008833034230179848860933087664321030x00000000000130ced6024c216d5636f216173feb2025-04-18T00:09:48.000Z10659937619178744196533942090x9d0e5be9132396cf0ce062d07d8e8fde75354cd8e5ba64c8754620ab6695614d
0x0d76866f78fcbca2730e60c5997d59d6ba585613-86167false0x00000000000130ced6024c216d5636f216173feb24-1438864783265712704202613971317475882633034273179848860933087664321030x00000000000130ced6024c216d5636f216173feb2025-04-18T00:10:31.000Z10663283623000325469312941590x674d53f524daf2f197e38740393fd289414218db67ba5d7502334b33451cf237
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_celol2.Pool_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100