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
1000x917933899c6a5f8e37f31e19f92cdbff7e8ff0e20x9fb25d291db66d22a72c52c5d24f11d71448a891false0x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700x7f8f138a7384cb58ff646a3d346cf2794885a0701286957649112025-03-27T20:45:50.000Z0x90181a5c6282be9bdf53139fdb27ea44b581b477ec5990cc9ca99a2ebd398b9b
30000x917933899c6a5f8e37f31e19f92cdbff7e8ff0e20x836241cc28f28554172676234780bf070f0399eefalse0x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700x4abac6f83a0869d03ce8748f86d30ee47d1ac36642569567912602025-03-27T15:41:22.000Z0x10a9a0b8470c69a07e0f8a1bfcfaf8ec2c08a72c5d3d6a0cdb2083ef696725d2
100000x917933899c6a5f8e37f31e19f92cdbff7e8ff0e20x94a0a695bd669a868aebbe33492ec833dd6d5cecfalse0x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700x690fad8144943979d3a8e74b5e9d64bb9d35986b199695740742002025-03-27T19:19:36.000Z0x4959e4a707ce31efb041bad8744235ca29ae5acc5f976a0a061dbee37f0fe28d
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_polygon.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
0x1b0585fc8195fc04a46a365e670024dfb63a960cfalse0xb7402ee99f0a008e461098ac3a27f4957df89a401186889095096276132348849034955330952708440559341941002079602023-06-18T15:13:56.000Z0xd854ad680ecc2c5c306c1fc9e8b6864e617f3bd52803ab61d41844b15ccf21ef
0x1b0585fc8195fc04a46a365e670024dfb63a960cfalse0xb7402ee99f0a008e461098ac3a27f4957df89a4020391679534621472361400515046888537918090440555791944002082602023-06-18T15:01:22.000Z0x3ec8df3c346af9ed31b68785e4cb91f5dcc9b339a720ed5e4804395c8edf5e7d
0x1b0585fc8195fc04a46a365e670024dfb63a960cfalse0x3361bf42cca22dc5fe37c7bd2c6a7284db440dfc18888267275509874648600018269130248639964440601802008802029202023-06-18T17:49:52.000Z0xcf8d25a923dcbb7b118526899d6bc99c69076c6042a6c4e872be94a022e5061d
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_polygon.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
0x1b0585fc8195fc04a46a365e670024dfb63a960cfalse0x3361bf42cca22dc5fe37c7bd2c6a7284db440dfc1911678846207774550032340234866455812290x3361bf42cca22dc5fe37c7bd2c6a7284db440dfc2005802013602023-07-27T13:34:53.000Z0x346f591d7c3583a40823450d8892db7cce79dc97321a941d1f50b4c62af640c0
0x1b0585fc8195fc04a46a365e670024dfb63a960cfalse0xb7402ee99f0a008e461098ac3a27f4957df89a40377266764238178806598143040859455752160x215462dc79523ac795216e1baa27586840fa93821989602016602023-07-27T09:59:50.000Z0x0a73b68de55931bcea14d632c56ed155c085057a9f338bac35fa3bed982a3050
0x21988c9cfd08db3b5793c2c6782271dc94749251false0xb7402ee99f0a008e461098ac3a27f4957df89a40310537391859703766585330457455825770xbd1d6155bbb0af642fe05d2d218a04d0adee8afc-279650-2793802023-07-27T14:23:11.000Z0x15394dfab5d4f2096baf8915657b33202f7804f08e1c9aac084a8c337843071b
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_polygon.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
0x28046815133d169295c7959fdb496eea08380564false0xcd03e2e276f6eedd424d41314437531f665187b9288197432510003833077390597692873900x363ee06e3ee424060a726cb7f60153c9ee44cdc12025-03-20T16:53:52.000Z0x6f4aa4e962caf9da37bb31b879e584315c139234de1851a37224983e52c616ff
0x8bbda11b9549ad89373369dfeb6655ad9d57eeb3false0xcd03e2e276f6eedd424d41314437531f665187b9404065201258285859001846994325692873900x363ee06e3ee424060a726cb7f60153c9ee44cdc12025-03-20T16:53:52.000Z0x6f4aa4e962caf9da37bb31b879e584315c139234de1851a37224983e52c616ff
0x615ad032220e5df9368423c686191953a32ccc9dfalse0xcd03e2e276f6eedd424d41314437531f665187b934695102014192346675514168807093646487117838692873900x363ee06e3ee424060a726cb7f60153c9ee44cdc12025-03-20T16:53:52.000Z0x6f4aa4e962caf9da37bb31b879e584315c139234de1851a37224983e52c616ff
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_polygon.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
0xb33a9c4ff43d331f05a27a5995b0d6904bee6308false033938868191550xd99c08ebec42a0395d86194f5521d0ed0559153241033938868191543649787056530xd99c08ebec42a0395d86194f5521d0ed055915322025-11-07T11:49:31.000Z0xd7af4732b1583004d21ba4165c69423a57b5b10f85b449dfbbd8eda28aceb566
0x74255cc2142b337a93ac88f3c32ceb95b5a99934false80307049702908200x4770663fd162a9ff10219dd9f569b8af5a0e0ae81912676901656763604400735376040xf2a3555584c6e20b288094b137f670472ec1bb9c2025-07-03T18:58:32.000Z0x096bdbc69d9a29d252a7179adfb2efe4aff7086e5d1515712d4cb0bd40618926
0xb33a9c4ff43d331f05a27a5995b0d6904bee6308false017038669249322920x4f80b1bd8a1562e3bc7798d49c39bf2b065439cb24017038669249322917696756080340x4f80b1bd8a1562e3bc7798d49c39bf2b065439cb2025-08-24T18:54:03.000Z0xf599fd3303e62d64850bc298d4e8598bee50e2749ab1185a697e182803052060
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_polygon.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
0xaabfa6dc0541033c1a2eb685f358d0ea937bb026false0x695cbb8e330e4decbcc54bd0b92cb656a1dc6a036550906565545041180x695cbb8e330e4decbcc54bd0b92cb656a1dc6a033065459992557945613590391454984256136762547834-360200-3406002024-10-02T16:16:22.000Z0xff0cb7e7fab1aa2c9dad6afd864be45921dd291a7244188d996552c6c059b393
0xaabfa6dc0541033c1a2eb685f358d0ea937bb026false0x695cbb8e330e4decbcc54bd0b92cb656a1dc6a036510225791871094590x695cbb8e330e4decbcc54bd0b92cb656a1dc6a033735434352655017591798470708987039192362527617-359800-3402002024-10-02T04:15:51.000Z0x29729fd2966dccb96d05e430a620ea6eac32a11f8f2bc17b8f9d99e9a78b8c8e
0x21988c9cfd08db3b5793c2c6782271dc94749251false0x89e895c79fc74f53cb13ee880e38a31149e7802b49507132845866180x89e895c79fc74f53cb13ee880e38a31149e7802b6288226480656406190404824081127962548292-286480-2840702024-10-02T16:32:36.000Z0xda59ae9d3770903d491ffe885392eae907b736cef269f0904de58474f7da61f8
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_polygon.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
0xdc0c62884e7fd5af17afec09791f98cafb343873false35682669192025-02-23T08:03:26.000Z0xd2effdea9132da84e090b3cd31079364ca04ce8d96a868c89d83d7343b8560654040
0xf154320d66ea29fb725f59df313cd82c960a076cfalse36682669192025-02-23T08:03:26.000Z0xd2effdea9132da84e090b3cd31079364ca04ce8d96a868c89d83d7343b8560654040
0xd35383d1f20d0f8731fef36d9b3fbcc5cf5f8548false34682669192025-02-23T08:03:26.000Z0xd2effdea9132da84e090b3cd31079364ca04ce8d96a868c89d83d7343b8560654040
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_polygon.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
0x21988c9cfd08db3b5793c2c6782271dc94749251-281273false0x0a6e511fe663827b9ca7e2d2542b20b37fc217a6254842515051756433040195-515691199439183641419396699436793990xee6b1939c10fdc9902b00915d6de004fa516c41b2023-06-14T23:18:20.000Z618627189401068853603510x94ccc7d79e6b650f465030e480d84e32c409d94d58fa69366a2f40e55f59a743
0x21988c9cfd08db3b5793c2c6782271dc94749251-281253false0xce6314f881c05f64c89b0f6520c0286f0ac91f8f303202028737871067665817-123486352439151051419396699436793990x1f1e4c845183ef6d50e9609f16f6f9cae43bc9cb2023-06-14T21:00:52.000Z619246555637040113548980x6eeb7ee580e3c23a6f9ff930252bd37f3c1ff7f2c99c8c7d72bcbee95715bc6a
0x21988c9cfd08db3b5793c2c6782271dc94749251-281228false0x7fa6377f78b587c71f7e24176d7a65c12fba76b2388-426208019064292134279260577328439183641533346532713811210x7fa6377f78b587c71f7e24176d7a65c12fba76b22023-06-14T23:18:20.000Z620024796505953644785810xb7fdb1bc3174714e00946252efb5aec9fa9085ea0b00b2ed3c91ab58cb27eaef
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_polygon.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
1000x917933899c6a5f8e37f31e19f92cdbff7e8ff0e20x8c50cc280a261b8012b2bdf42a8bc6225f8ec935false0x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700xb72c0b461d5077466b2e45b296b797f3fd2bd6c03054530062412023-07-20T10:41:42.000Z0x332567fb8bdd2237d3344d84337cceed043421026ca79af99f043b08e50a72ac
100000x917933899c6a5f8e37f31e19f92cdbff7e8ff0e20xdbb9529a09a7985c27d160b07aa9aab23921bc49false0x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700x7d3bbbd25915e37b2d45d8918ca027f3e469a3e8287453106892002023-07-20T16:43:08.000Z0x304e3351fca18473991f72d4699fd8ac875605b28f8f119245f4ca22d4c7a45c
100000x917933899c6a5f8e37f31e19f92cdbff7e8ff0e20x32a3b09fcfbeeedf66c947b4f796aa58fdbdfb0cfalse0xc2132d05d31c914a87c6611c10748aeb04b58e8f0xd41cbd667ad10ab83198f40ec6ac97190309178b178453170812002023-07-20T20:34:05.000Z0x71411f963628ddcba6efad6520e06d79391b556f847cb4883ca1f7bcfd76c9be
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_polygon.V3Factory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100