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
30000x126555dd55a39328f69400d6ae4f782bd4c34abb0xea560ca47f9f29b9c61871a5a059ed10664cdbfcfalse0x947950bcc74888a40ffa2593c5798f11fc9124c40xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c13329339873602023-06-23T01:52:30.000Z0xf2645bd90ca04d52a162b74b2087bac2bf63cdfc3c9d1d3548374e414c52083e
100000x126555dd55a39328f69400d6ae4f782bd4c34abb0xc9a924422012087bbb93438c932bae19a99bf552false0x1613957159e9b0ac6c80e824f7eea748a32a0ae20x2170ed0880ac9a755fd29b2688956bd959f933f8145329723492002023-10-27T15:04:36.000Z0xfd5ecc10e41039a00a2a442d41e6f0f07015ae774d74d02440f384481ec0b483
100000x126555dd55a39328f69400d6ae4f782bd4c34abb0xe019ad53ecff61c2540026a972eb3f191df4071efalse0x0cbd6fadcf8096cc9a43d90b45f65826102e3ece0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c159281331022002023-05-12T02:00:58.000Z0x98bf69a20b1f32493ffc235fb94d887a806514a72b21a601c1e11c5d45a0934f
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_bsc.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
0x6e6f1953fd057d334a8d56b76bffb45d67a7a596false0xf70c086618dcf2b1a461311275e00d6b722ef914193112405124474833621995046362251124552856250055913701157908529075587-64920-510002023-06-13T20:57:30.000Z0xa4badc7ac7ff8615704091f23918713804294a3fd4aee44399e796749085ee4f
0xe40fe0b23ca46b6c7a883d85536857cf9fe87c21false0xf70c086618dcf2b1a461311275e00d6b722ef9146013667537305296529611476379565209432353081029078626442201404602023-06-13T23:29:42.000Z0x04d3fade4f4703a653f87e043b1b1d2375a1608a4d783134477cb4708b87a576
0xc0e2792774b2f602f74f6056ed95ab958d253823false0x570057ec7dcf62bbf4fec43fcc38489b881878b8353282892028814378151386174721763328385606163851200810909054831049092-59580-509302023-08-21T14:38:33.000Z0x3bfca38ee74bb4c8c366cccccf8e15bebfa0cde946f6ab5c2aa0abdc09ef579d
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_bsc.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
0x69c737cfc0998c744c0965e5d24f574fff86e1a6false0xe6d6d551e1e575600d78dde7cd8f94c9de66d8ec110969054103163294401421152859634363859307619870xe6d6d551e1e575600d78dde7cd8f94c9de66d8ec19800207002023-08-11T14:37:17.000Z0xba51191783a098c5fca676b38cf9433b1441ca1192c55757d68472ea8c7b946f
0xc0e2792774b2f602f74f6056ed95ab958d253823false0x570057ec7dcf62bbf4fec43fcc38489b881878b823107434543002791352612435128863661348071307621830x570057ec7dcf62bbf4fec43fcc38489b881878b8-57770-518902023-08-11T14:47:13.000Z0xbbf39668e6a91e5aeee84d58240d2b233efa5451edd935e5f25b1b66bb4f596c
0xc0e2792774b2f602f74f6056ed95ab958d253823false0xf70c086618dcf2b1a461311275e00d6b722ef9147003199999999999999307569510x30000450c27d9fc2a009a8828d94ae52f674395f-57450-574402023-08-11T10:25:04.000Z0xb76460a56eca2af0a79f6800314f67aa07f97406f167770196d397f18cb5eb5c
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_bsc.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
0x038ebba96937d741391b5750bccbf18c2b673940false0xcd03e2e276f6eedd424d41314437531f665187b95563635363742739043768936351160562372080648628483490xdbeca8fb948c42634256609bce5a3768c9b3e9eb2025-09-29T08:41:25.000Z0x5834d75137135a8d60fdb0544d03d7f00018111c191de079c66c2ac24b8d7208
0x13869d64ed4c7dd1c263aa92d5982cae54b85c8ffalse0xcd03e2e276f6eedd424d41314437531f665187b95593073678493730044037431017658382048579468628483490xdbeca8fb948c42634256609bce5a3768c9b3e9eb2025-09-29T08:41:25.000Z0x5834d75137135a8d60fdb0544d03d7f00018111c191de079c66c2ac24b8d7208
0x451c311bd4c8bd2f2d48bf7282586a19084962c6false0xcd03e2e276f6eedd424d41314437531f665187b95651293923173045321172948613925365628483490xdbeca8fb948c42634256609bce5a3768c9b3e9eb2025-09-29T08:41:25.000Z0x5834d75137135a8d60fdb0544d03d7f00018111c191de079c66c2ac24b8d7208
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_bsc.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.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_bsc.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
0xe019ad53ecff61c2540026a972eb3f191df4071efalse0xe6fc0da8ab0a4fd2a9852658412470980aa7aa6c98597072892879766700xe6fc0da8ab0a4fd2a9852658412470980aa7aa6c2505489764630560756042020049722009690072429757028-86200-636002023-07-07T14:32:49.000Z0xed9a58aa21658c335e8f967f7f02e1e419d338344e11c0a9ad0e8209ba84de1a
0x69c737cfc0998c744c0965e5d24f574fff86e1a6false0xe6d6d551e1e575600d78dde7cd8f94c9de66d8ec5856269687038108170xe6d6d551e1e575600d78dde7cd8f94c9de66d8ec216218239389545345577587698367315592975716620040213602023-07-07T14:39:44.000Z0xfe2eda124d3f78f07bd8639c9f287c3dd73e42d817ceb029124ea68f338f7762
0xc0e2792774b2f602f74f6056ed95ab958d253823false0x570057ec7dcf62bbf4fec43fcc38489b881878b8311683617325162748620x570057ec7dcf62bbf4fec43fcc38489b881878b83215924712364840037919129812077348476096029757574-57800-519802023-07-07T15:00:09.000Z0x6c4c08e6f3beb4a5b04a2a8333beaa4be3965e69a50b6d13da3933649e6e3010
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_bsc.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
0x2db0ee9f6d3692175306839bf53d269c034937cdfalse150429113802024-10-07T15:13:13.000Z0xb84517a042ca9b2485436203816f4040f9e691dd76db0be3ab466a42af0f295d4040
0x474ee7ecd39189d9c46b67fc563b8fdef00058c6false417653008412025-10-20T16:06:48.000Z0x74fc976a1baef45348d5bd22fba58bc9f46e8575bd84ee4464fcfedb70f3182b4040
0xb0c85714f84fc0e0b597b18ee91f70d10b63cd4afalse134509382392025-06-05T19:22:23.000Z0x299a88c92baef2b2443d728cda96b92a00e267f21bbc0a7460f0c300dd798e654040
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_bsc.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
0x4d9f3667dda86078ac4b5d80ca524c365877ffc4-385966false0xaa91b76fdbbfccdf164b69e98904e9377ffe3ff7291-21273930519497601419209677357051232329278846791132905490158537549770814801638298560xaa91b76fdbbfccdf164b69e98904e9377ffe3ff72023-06-13T03:41:05.000Z3297279384670280877240x610a109e7668138bb402c4370895fe16af9bccd95e9a4a0374eb6a15f1fc5ee4
0x038ebba96937d741391b5750bccbf18c2b67394020false0x400d75dab26bbc18d163aea3e83d9ea68f6c18041757-3911623507696031079391930000000000000029068188170039696668097925648550x1c525dfce395b9f07e5d7f382b7a352cfb437f032023-06-13T14:47:09.000Z793110313450712571225858885300xc29daf9c62bf4622c32f45570b91f930a9a7e092aaa817f0e482f8b605929ee6
0x038ebba96937d741391b5750bccbf18c2b673940-10false0x400d75dab26bbc18d163aea3e83d9ea68f6c18042299698336000000000000-969362921066210956029057388170039696668097925648550x6330805978089e3d93309694e55a6270e637c04d2023-06-13T05:45:39.000Z791903154572445603666815701410x0de00039fc2107799ce1f64a9258b4481c1c277cde0060119cffc9645f73751e
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_bsc.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
5000x126555dd55a39328f69400d6ae4f782bd4c34abb0x13869d64ed4c7dd1c263aa92d5982cae54b85c8ffalse0x55d398326f99059ff775485246999027b31979550x8ac76a51cc950d9822d68b83fe1ad97b32cd580d12928471410102023-05-23T20:25:24.000Z0x453d507c9fb09a11d35b93c85f3bec74617753590c3bdf79c29c530c9ced4ef2
30000x126555dd55a39328f69400d6ae4f782bd4c34abb0xe4b826e59da0bc52bcfe02d3955dd37f736645e7false0x55d398326f99059ff775485246999027b31979550x8ac76a51cc950d9822d68b83fe1ad97b32cd580d18928471329602023-05-23T20:21:21.000Z0x46d583213fa46f6a2060fa6bae1ccef11cbc70d8e678b20e18de8c6286747723
1000x126555dd55a39328f69400d6ae4f782bd4c34abb0x264c1eafada2fc355f9bab5b16c9e8a6dc1ff015false0x1af3f329e8be154074d8769d1ffa4ee058b1dbc30x55d398326f99059ff775485246999027b31979551162847169512023-05-23T20:39:42.000Z0xc675012961b7e873bdf52407eda4f51dfea312fa0bc4d4f28eefbc51e61f261e
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v3_bsc.V3Factory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100