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
100000x7770978eed668a3ba661d51a773d3a992fc9ddcb0xeeb2b1c50a18abed97aab64012b2dbfab44a96c4false0x6b4c0b19bf0dfeb102d5fd702af1f1fb4063664a0x74b23882a30290451a17c44f4f05243b6b58c76d0654194132002023-07-09T07:10:21.000Z0xce24f96f3b5627150a9b8ee1fb452450e89fe2b2e818415e6bbe75859c9304db
100000x7770978eed668a3ba661d51a773d3a992fc9ddcb0x11e637f5b41115a63dcca46db40ca012e5a427f8false0x21be370d5312f44cb42ce377bc9b8a0cef1a4c830xee8eaec73babe18568b07eab1c882d647441ddad0654187862002023-07-09T06:54:30.000Z0x2a0c30a32fe308c42cca0617290f427e58459b85b4eeeb204d764e5bda7baa68
100000x7770978eed668a3ba661d51a773d3a992fc9ddcb0xee49d9caa34ef1089981f81c20e6ec690c62ab09false0x21be370d5312f44cb42ce377bc9b8a0cef1a4c830xa03fdc5bfccab61d4f419f0df03f311c0e36d7e40654189762002023-07-09T06:59:26.000Z0x4e27094ec57699247be216c334abe9ce6cc37cd7262c73604c05766c09a9221c
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_fantom.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
0x5fc14f7b1ae82f209429b271209692a49279e515false0x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa2913999155536821008626694678419254273369066834414375092163070605977065260531-32000-202002023-07-07T04:09:39.000Z0xa7eb5ee7f8780e4944b0c337caa3bbdd06e2815a8cdb814101cc808a0c4bd0b6
0xee378f50d3f81b03168293c5aa2171002202774cfalse0x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa548056622032647000255236183218221705170072070053366850841192422425655358834698365268150-124400-1208002023-07-07T06:17:35.000Z0xb998670d6c999101ed6dc086e46fa7018095571ca870dbb9e38160ef9e6501d7
0x20289a7c3dcde76d7d1720fe35654006e2cc5c57false0x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa1314256951868797802408501332175821683668881187963401247772842990656165268180-34020-240002023-07-07T06:17:59.000Z0xc29255891bdf5e9d6c5691ebcd820cf7305f6974403ccd72583e1bc6a9c3bca2
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_fantom.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
0x944f2bc8250ed258782da74feb747ff3413d76adfalse0x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa38681061849173789918951940069070475747363902697713682094230xc3755c50ef8f5408fd8f22be53743ecff2d2b4441634001792002023-09-15T13:18:50.000Z0xc4d0fa4ebb0988d9f2f723bf935d111c2efe2749107e34c2512ce46d188827d5
0xb3b31b6568503fc84c548443230d10b03fa8ec89false0x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa4419511634510619907305721279689770406740663381950x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa-23000230002023-07-27T01:58:56.000Z0x5918f791f4a77d56fcbaad96f7cca54ed584632a27daac34ec3ea14ecc1137c8
0x19951794d5974c82f293c868f91e747c9943342cfalse0x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa83299600579643978866595857619669867900xdd76696d5bf57b53e177b477127724ab67e20534-8872728872722023-08-14T20:09:08.000Z0x2aa698ca8af1a4d460811ee8ca1c92aea3e945e83c4643338b6c1e12b6bfa650
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_fantom.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
0x9a7a00acd9289ce7668976418ff11cbe44b9d004false0xcd03e2e276f6eedd424d41314437531f665187b922131381413642090391846953177128887391027025630x363ee06e3ee424060a726cb7f60153c9ee44cdc12025-01-15T00:06:43.000Z0x1246d1ee6dfd79ac22642ddc2f37764cddfadc8b697647156f2329e6c5f73c5b
0xe471424bf8bba2aa936df8e63485ebe22d81e400false0xcd03e2e276f6eedd424d41314437531f665187b95122967914465714105950301027025630x363ee06e3ee424060a726cb7f60153c9ee44cdc12025-01-15T00:06:43.000Z0x1246d1ee6dfd79ac22642ddc2f37764cddfadc8b697647156f2329e6c5f73c5b
0xdb60b823a3bc60b9e59136511b7535facef2eab4false0xcd03e2e276f6eedd424d41314437531f665187b9177050389712637029346410133474552291521732995994150x363ee06e3ee424060a726cb7f60153c9ee44cdc12024-12-09T18:58:19.000Z0xd0a6aabe3598b6cb98e6c8c0a143cc2e0ee5fc6861cce8f449f85efde03e19c0
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_fantom.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
0x689ee85b4f4ceb7fc83c31131fcd40b1d8e7ae0efalse2532189378128314511100x375f1f2ed586f2ade1b90c796bfcdb52d69d604f1725321893781283145110580841750320x375f1f2ed586f2ade1b90c796bfcdb52d69d604f2024-07-01T09:39:25.000Z0x08cceb5761ee8e6be821325a349d7fcc2e575873a0f13ff78e294aa6e41cdfd2
0x689ee85b4f4ceb7fc83c31131fcd40b1d8e7ae0efalse2525252425540581561000x375f1f2ed586f2ade1b90c796bfcdb52d69d604f4325252524255405815609710896540830x375f1f2ed586f2ade1b90c796bfcdb52d69d604f2024-08-22T18:44:45.000Z0x143439e481db50f836e0945c2e2fe8898f419e7b6f56474b755806f6b634d3c1
0x689ee85b4f4ceb7fc83c31131fcd40b1d8e7ae0efalse2087443402608843015000x375f1f2ed586f2ade1b90c796bfcdb52d69d604f920874434026088430149690896538160x375f1f2ed586f2ade1b90c796bfcdb52d69d604f2024-08-22T18:40:16.000Z0xa2579109d22438bf3e534c1d1c1e85217bf3d25f4e00381256d42dedf46f177d
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_fantom.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
0x08d9e6174eb841953db867a04b40c42277eda685false0x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa442466103569585271983810x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa4162662612319611354150000000000007409511173989966884851-250001974002023-08-11T22:06:06.000Z0xc2b04d748365b505e34d70dbf0b49444bec2a7225f276505ef597ae5e19862b9
0x090ea68df581626d471e13fcc9a6a6e0d94b30b9false0x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa30452757009889840x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa33124221203152234265271521848963506956-344700-3429602023-06-03T01:04:59.000Z0x223fe7019a1a415a297989d3212e3e7378b5b9eda3bb96c026374147881cf60d
0x3663f329d809d49c977856e2f5e8443fd03aaeb2false0x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa10181683521899643628500x10c19390e1ac2fd6d0c3643a2320b0aba38e5baa3285531521234739310368652994917753497860963506943-87660-861002023-06-03T01:04:37.000Z0x7b73328632f13e13cdef0fd9492f69c5020c48be3e437fdef09af3b7a4811c34
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_fantom.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
0xa9659cffd904f003e33b16e812e310e22f638436false61140025782025-07-22T01:35:12.000Z0x080ea04550342d85bfc5ddcaef509fe62b6a515554aec8d76159c628f2c584cd4040
0x0fa67b5ddd561122a98f05adfb6107a601d62139false31140025782025-07-22T01:35:12.000Z0x080ea04550342d85bfc5ddcaef509fe62b6a515554aec8d76159c628f2c584cd4040
0x27cbdb86b59bee293f1369e44e2112aea3be52adfalse41140025782025-07-22T01:35:12.000Z0x080ea04550342d85bfc5ddcaef509fe62b6a515554aec8d76159c628f2c584cd4040
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_fantom.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
0x37216637e92ff3fd1aece7f39eb8d71fc2545b9b284534false0x3e603c14af37ebdad31709c4f848fc6ad5bec7153-43861000000000000000059116084307374541111044700x23defc2ca207e7fbd84ae43b00048fb5cb4db5b22023-04-05T07:40:26.000Z1194420967791794683352191653140000620x5b55cd2a95941de403d86c65a5226adc4d0c571e01c816b18024007807d17c05
0x37216637e92ff3fd1aece7f39eb8d71fc2545b9b284534false0x3e603c14af37ebdad31709c4f848fc6ad5bec7153-43868199999999999999999959116014307374541111044700x23defc2ca207e7fbd84ae43b00048fb5cb4db5b22023-04-05T07:39:13.000Z1194420710807342616501335594975166380xf37a5872ff410d80e5962083821982b559f1dd2164207f8faa81e9cc21aa855f
0x6a6a73b094bce695c08c7df81cd65644968357f955false0x2214a42d8e2a1d20635c2cb0664422c528b6a43277-351520503526071663113897137494553520x0a80c53afc6de9dfb2017781436bfe5090f4acb42023-05-26T10:39:30.000Z794482036169238834220267783100x0651bf825dfd382bd79283d0b9fde6ceef50bc3c42505ea236a8cd3e1e49b5db
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_fantom.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
100000x7770978eed668a3ba661d51a773d3a992fc9ddcb0x69fc28f102833969449ec9ce35c2b265c62f3949false0x21be370d5312f44cb42ce377bc9b8a0cef1a4c830x82f0b8b456c1a451378467398982d4834b6829c10653327222002023-07-08T03:12:21.000Z0x3a8d836841818fa52a7460c730f283ec33f6c193cb7ae5fa14675bacbabba06e
30000x7770978eed668a3ba661d51a773d3a992fc9ddcb0x21ef913a4d3dc9d773d19d254c93300170c03facfalse0x21be370d5312f44cb42ce377bc9b8a0cef1a4c830x2f6f07cdcf3588944bf4c42ac74ff24bf56e7590065353558602023-07-08T09:58:57.000Z0xa32558d023d7c2896e85b7f324221b59f9968f7e7c6168cdc57871373252bf1c
100000x7770978eed668a3ba661d51a773d3a992fc9ddcb0x238683fa7b9dab35eb177adb0fe74a1333c93702false0x21be370d5312f44cb42ce377bc9b8a0cef1a4c830x2f6f07cdcf3588944bf4c42ac74ff24bf56e75901679090132002023-09-06T13:18:11.000Z0xa8f95d58cd7dc7cdbeba37dd8e512b427ce55229c9d364b2ba805f913be28eec
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_fantom.V3Factory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100