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
30000xf78031cbca409f2fb6876bdfdbc1b2df24cf9bef0xe26d5614e5f91bc5d24fdf4947ea61ed9557d752false0x4b1e2c2762667331bc91648052f646d1b0d359840x82dfe19164729949fd66da1a37bc70dd6c4746ce1028567344602023-06-21T14:58:40.000Z0xe227fef33d17624dd5e690c240fcbfc7c482c2f8fa9447621a75184fc342521b
5000xf78031cbca409f2fb6876bdfdbc1b2df24cf9bef0xf072b4758c6e795bee555cc2f6d20cdacee8b1f9false0x4b1e2c2762667331bc91648052f646d1b0d359840xe91d153e0b41518a2ce8dd3d7944fa863463a97d928858767102023-07-09T07:06:35.000Z0x97627e01d43df84decf3880ffa8dd05a685960009ad0fab48f46fce6af6e1497
1000xf78031cbca409f2fb6876bdfdbc1b2df24cf9bef0x782d7cf58666b0dd3e84fe57707408621e3bdd04false0x82dfe19164729949fd66da1a37bc70dd6c4746ce0xe0d0b1dbbcf3dd5cac67edaf9243863fd70745da392835894512023-06-08T23:43:55.000Z0xa1749b1e35d9292b4f4399b0ccdf91605ca950d37f29504100fcdca72a7e674d
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_gnosis.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
0xa86e60ce1a56acc3c23769a523fc476c0a0c7becfalse0xab235da7f52d35fb4551afba11bfb56e18774a6582189261067205242994191503037880759911946217449428102993516149229840502-8872728872722023-09-06T15:45:20.000Z0xe9a9d35614541ec217c6380631343eaaba10a05df336b9318421b2fa4ce25d80
0x5fa192d5c3ee926e04489322631d4a1e554bf3a6false0xab235da7f52d35fb4551afba11bfb56e18774a651965782097510491476376270599245517074091517253671307953870229718170-600078002023-08-30T07:08:00.000Z0xb4a39eea108a3089c561c9adf7d6e287edeed7b6e57c1fdd3939cbc73cbd8e1e
0x5fa192d5c3ee926e04489322631d4a1e554bf3a6false0xab235da7f52d35fb4551afba11bfb56e18774a65040002954299420014002023-08-19T18:37:15.000Z0x6b1543c261b9132df12ac463d851533970fb1ba9f60560d8e93ad89f6cf8a1df
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_gnosis.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
0x2aca1e3c378551363ed055e66612fc66259e49f3false0xab235da7f52d35fb4551afba11bfb56e18774a6527199999999999998553070299554740x59fb16c10c52ce120e513f232af141901ad18d9b-276300-2745002023-09-13T14:07:45.000Z0xf3af34c2d64e1d93bbb8000aa683210a61722e937c7572a66f949988ce94efd7
0x5fa192d5c3ee926e04489322631d4a1e554bf3a6false0xab235da7f52d35fb4551afba11bfb56e18774a652110072276753763888429784825770583617622299538250xab235da7f52d35fb4551afba11bfb56e18774a65-20012002023-09-13T11:44:00.000Z0x7b2762f812ad1cbc8753bb9a5c6680a5cf43ae0175c8aa81369b290ecd37e1d2
0xe9ee62b3387cba7ed143e8645e5c26232a5a6337false0xab235da7f52d35fb4551afba11bfb56e18774a659770582462973139691605348366661821492703299537320xab235da7f52d35fb4551afba11bfb56e18774a65-12013802023-09-13T11:36:05.000Z0x66f59e49326ab41ea231c8801987d645a90fd1f960f1dfbaaa06070ad3ba1b51
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_gnosis.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
0x0b43767603653fcd9476d664d25c58b109214f03false0xcd03e2e276f6eedd424d41314437531f665187b93913230000661500387060150x363ee06e3ee424060a726cb7f60153c9ee44cdc12025-02-23T08:26:35.000Z0x32fb4e4b9daedcda3156b764058d277afd3514d88debdb9f6a5d1e6cba7691dc
0xd7bb3dff2a5a7ac5d2150f161514d866b6c960e8false0xcd03e2e276f6eedd424d41314437531f665187b94221881433720125985523149768387060150x363ee06e3ee424060a726cb7f60153c9ee44cdc12025-02-23T08:26:35.000Z0x32fb4e4b9daedcda3156b764058d277afd3514d88debdb9f6a5d1e6cba7691dc
0xd7bb3dff2a5a7ac5d2150f161514d866b6c960e8false0xcd03e2e276f6eedd424d41314437531f665187b9341478113707318701061815363359829490x363ee06e3ee424060a726cb7f60153c9ee44cdc12024-09-13T16:54:40.000Z0xca3da0980279e34bf086e7b636839198e3189de968de9c6268dbb86c67b378c1
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_gnosis.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
0xf5e270c0d97f88efb023a161b9fcc5d0c7ad0b70false5120000x96c4793f6909822c2cdab4bebd611f6c1b66eaca555120000000354883890x96c4793f6909822c2cdab4bebd611f6c1b66eaca2024-08-15T02:06:40.000Z0x16cfa4d6c3bd55bca9a48612d316c155ac59f8b0871a74c38e5bf2393967cdd5
0xf5e270c0d97f88efb023a161b9fcc5d0c7ad0b70false0209715200000000000x96c4793f6909822c2cdab4bebd611f6c1b66eaca2310209715200000000000000354991690x96c4793f6909822c2cdab4bebd611f6c1b66eaca2024-08-15T17:58:20.000Z0x9d6f24e6e8eb1a483a7415637eef32d8031168f5ab5a7838c7bc4575ceff0e10
0xf5e270c0d97f88efb023a161b9fcc5d0c7ad0b70false0512000000000000000x96c4793f6909822c2cdab4bebd611f6c1b66eaca440512000000000000000000354949910x96c4793f6909822c2cdab4bebd611f6c1b66eaca2024-08-15T11:50:55.000Z0xaae13851383a8f1b4b79a64dd7d460263d7b50176394aa13a1e4b3e002832cb2
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_gnosis.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
0xf5e270c0d97f88efb023a161b9fcc5d0c7ad0b70false0xab235da7f52d35fb4551afba11bfb56e18774a65216208188290410xab235da7f52d35fb4551afba11bfb56e18774a65101020011414288832165776281912722763132763332023-05-29T19:59:05.000Z0x8029c934b69ab1ea26e13fb2ae373b4d36278b968cbcd442dd03b5bcfdf602c8
0xf5e270c0d97f88efb023a161b9fcc5d0c7ad0b70false0xab235da7f52d35fb4551afba11bfb56e18774a651659309749200xab235da7f52d35fb4551afba11bfb56e18774a656108000281919333171043309682023-05-29T20:58:55.000Z0x54ef949e1bb1dea5f881a0f9a0bba0c3bf6d456e691669031c5ebd81e2ab8c3b
0xe9ee62b3387cba7ed143e8645e5c26232a5a6337false0xab235da7f52d35fb4551afba11bfb56e18774a6515505093174182298500xab235da7f52d35fb4551afba11bfb56e18774a6584600678834832036641158799999999999999830145930-138180106202023-09-25T09:49:25.000Z0xc9f281b1c859f2c2bbaf82e70093584c203f95b434371af88dbae3cecab36e3f
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_gnosis.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
0xa637e131cbe1bc2af9388559e18aa6ed4425828efalse100383787872025-02-03T20:42:30.000Z0x27aee346072ffb0a72cf82a518443917c53f9c646c7ca107805d50f3d231d7ba4040
0x5c045392502c0b371f52386e8ce31829218bdf14false98383787872025-02-03T20:42:30.000Z0x27aee346072ffb0a72cf82a518443917c53f9c646c7ca107805d50f3d231d7ba4040
0x39c3dee55e7cfb678e53402b9596acdb3f3baa05false97383787872025-02-03T20:42:30.000Z0x27aee346072ffb0a72cf82a518443917c53f9c646c7ca107805d50f3d231d7ba4040
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_gnosis.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
0x5447d85ecbe719ca98f62bc356f3c77bc4a48c90-10false0x6cd74fe6114620e7be7c80a22c9669d7e208c0c730-2002090200000029574341121644378580x6cd74fe6114620e7be7c80a22c9669d7e208c0c72023-08-21T15:55:20.000Z791893477210846303496341588140xb2dbddd40b68abd71302ebf9c106296939b2c9739390f7a999475cd71568be66
0x5447d85ecbe719ca98f62bc356f3c77bc4a48c90-7false0x6cd74fe6114620e7be7c80a22c9669d7e208c0c731-2001431200000029574838121644378580x6cd74fe6114620e7be7c80a22c9669d7e208c0c72023-08-21T16:37:45.000Z792023726122670721829705044400x47aab446691ae8d86dc499d4fb65a0968e0350815ff6762120355e8f22d00607
0x5447d85ecbe719ca98f62bc356f3c77bc4a48c90-8false0x6cd74fe6114620e7be7c80a22c9669d7e208c0c76-4004075400000029569161121644378580x6cd74fe6114620e7be7c80a22c9669d7e208c0c72023-08-21T08:26:35.000Z791968969596743847991817054610x316aea3d9c57a55627c0f50b17766f1367bb0d025d005538e61c68409dd092d6
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_gnosis.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
30000xf78031cbca409f2fb6876bdfdbc1b2df24cf9bef0x2aca1e3c378551363ed055e66612fc66259e49f3false0x4b1e2c2762667331bc91648052f646d1b0d359840x4ecaba5870353805a9f068101a40e0f32ed605c62228444961602023-06-14T05:30:25.000Z0x8e47b22ed5875f6b2396ce8a24455ca532a874b8ffe28f2f00bf6f161c72aa82
100000xf78031cbca409f2fb6876bdfdbc1b2df24cf9bef0x5fa192d5c3ee926e04489322631d4a1e554bf3a6false0x4b1e2c2762667331bc91648052f646d1b0d359840xe91d153e0b41518a2ce8dd3d7944fa863463a97d57284892512002023-06-16T21:55:30.000Z0xca094f83a27520d523d71e6fb22c0621926afc2bc6dafcc04550fa0c226d335a
1000xf78031cbca409f2fb6876bdfdbc1b2df24cf9bef0x114e7384d5b650489944c83fcd1e90ab02c454b5false0xcb444e90d8198415266c6a2724b7900fb12fc56e0xe91d153e0b41518a2ce8dd3d7944fa863463a97d212945364012023-08-14T07:39:35.000Z0x05ff031b4862b8283d3a8550737d28587f65fe670e260790ae261be5cf52d93d
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_gnosis.V3Factory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100