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
30000xf36788bf206f75f29f99aa9d418fd8164b3b81980x84be60e555e9b552255fdfba4cf822f57ab41b41false0x710d054e3f35e0c606f1e5b1ba7b43ad930964df0xa00744882684c3e4747faefd68d283ea44099d03034045001602025-01-04T09:38:20.000Z0x209ca2021f2c1b2b879d4369267c62146a71fdfc9c40edd50c50959e8f51dd53
100000xf36788bf206f75f29f99aa9d418fd8164b3b81980x71bbcf3c729bed25aa1c18d50879558e1239c48cfalse0x710d054e3f35e0c606f1e5b1ba7b43ad930964df0xa00744882684c3e4747faefd68d283ea44099d030340449642002025-01-04T09:35:15.000Z0xdf831c674bcbc4fb7386f35bbd6de420c2372b98f05f4962a2725081c691fab3
1000xf36788bf206f75f29f99aa9d418fd8164b3b81980x4c40182cf796dab232278b40055008e55dae0f3ffalse0x710d054e3f35e0c606f1e5b1ba7b43ad930964df0xa00744882684c3e4747faefd68d283ea44099d0303404498812025-01-04T09:37:15.000Z0xd262597274a4c583f1fa98ce9b710309837f0885fb6678f2a17d44f72793f6e4
Query with partition filter
SELECT *
FROM `tt-contracts.mimo_v3_iotex.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
0x140530ea14f9968ecd9a5df01a69eff02a6a9644false0x6afd2d627cb163d1916d8ca84bf9796294044adf0100036627751-8872208872202025-06-03T15:32:05.000Z0xd108add98bf75b60b6bc5094c1f1225ebfc290df3a231c82a3c420f0035d7050
0x140530ea14f9968ecd9a5df01a69eff02a6a9644false0x6afd2d627cb163d1916d8ca84bf9796294044adf2808689071429992485475439610208362690230191719915912150062947933836627762-8872208872202025-06-03T15:33:05.000Z0xe504713530ff73e55136ea5422b88c8abe81f69407adf0c863f92acc2fd8e2a7
0x546fe5ec57eef82b1092d684c05194cc1913b9bafalse0x6afd2d627cb163d1916d8ca84bf9796294044adf000033165642-8872208872202024-11-14T08:29:20.000Z0x50edd244f76a122347111297bcad9ec872e3e5c08d9bfda3cdbfae5f9a921fe6
Query with partition filter
SELECT *
FROM `tt-contracts.mimo_v3_iotex.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
0x00d9974fb3f90228abefd4c477a2b0f349837e70false0x6afd2d627cb163d1916d8ca84bf9796294044adf40194832972824977735300432400x9117f5ef4156709092f79740a97b1638ca399a00-62760-546602024-05-17T11:55:50.000Z0x11c8e2d5e5db4497c80a5c3059685bd511346306af9f855d74158944aa2dee4f
0xaccea99119433bc455b1ffa789cc731d8e0fe65cfalse0x6afd2d627cb163d1916d8ca84bf9796294044adf436150341588231411490102743950513171852300433390x9117f5ef4156709092f79740a97b1638ca399a00-62760-546602024-05-17T12:04:05.000Z0x2b9c083008e1601d41c6e2bb38f087e425883d25de80859de147b37ea7fa8c3b
0xaccea99119433bc455b1ffa789cc731d8e0fe65cfalse0x6afd2d627cb163d1916d8ca84bf9796294044adf51606681848365840510445663978005854156300433140x9117f5ef4156709092f79740a97b1638ca399a00-62760-546602024-05-17T12:02:00.000Z0x73cb29b57f0f3fb63e96893fd978bae4b68b4f5f60033ef3a1eaf359837dc923
Query with partition filter
SELECT *
FROM `tt-contracts.mimo_v3_iotex.Pool_Collect_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Flash_event

Flash loan events from liquidity pools recording borrowed amounts and repayment fees for both tokens in the pair. Tracks sender, recipient, borrowed quantities, and actual fees paid for arbitrage and liquidation analysis.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amount0STRINGAmount of token0 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_amount1STRINGAmount of token1 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_paid0STRINGAmount of token0 paid as flash loan fee. Numeric string representation of token quantity in smallest denomination.
in_paid1STRINGAmount of token1 paid as flash loan fee. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.mimo_v3_iotex.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
0xa6055aa78685db4d778f4317a3021992d3c36324false0x6afd2d627cb163d1916d8ca84bf9796294044adf3000x6afd2d627cb163d1916d8ca84bf9796294044adf31162896490729522300-8872208872202024-04-17T08:19:05.000Z0x637d277ce532126e593857d5a9b40c79d4cc6958364ef1c01e5905d85d503c84
0xa6055aa78685db4d778f4317a3021992d3c36324false0x6afd2d627cb163d1916d8ca84bf9796294044adf3000x6afd2d627cb163d1916d8ca84bf9796294044adf51162896490729522317-8872208872202024-04-17T08:20:30.000Z0x0c0afb22a98cb8d03cfea0bd14d2aeebe2c3a753c9fa6e0734b1d4f8c8ce89b9
0xa6055aa78685db4d778f4317a3021992d3c36324false0x6afd2d627cb163d1916d8ca84bf9796294044adf3000x6afd2d627cb163d1916d8ca84bf9796294044adf21162896490729522342-8872208872202024-04-17T08:22:35.000Z0x9d4ea035ffcb2a4c768e6b22776a5c71eba114ef28001953e008104a17963fff
Query with partition filter
SELECT *
FROM `tt-contracts.mimo_v3_iotex.Pool_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pool_Swap_event

Decentralized exchange (DEX) swap execution events recording token exchanges within liquidity pools. Contains sender, recipient, token amounts, liquidity depth, price data (sqrtPriceX96 or tick), and transaction metadata for tracking trading activity and price movements.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_recipientSTRINGAddress designated to receive the output tokens from a swap or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amount0STRINGAmount of token0 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_amount1STRINGAmount of token1 involved in the liquidity pool operation. Numeric string representation of token quantity in smallest denomination.
in_sqrtPriceX96STRINGSquare root of the price ratio between token1 and token0 encoded as a Q64.96 fixed-point number. Numeric string representation used in concentrated liquidity automated market makers.
in_liquiditySTRINGTotal liquidity available in the pool at the time of the event. Numeric string representation of liquidity in smallest denomination.
in_tickINT64Current tick index of the concentrated liquidity pool after the swap or operation. Integer value representing the price point on the pool’s tick spacing grid.
addressin_tickremovedin_senderlog_indexin_amount0in_amount1block_numberin_liquidityin_recipientblock_timestampin_sqrtPriceX96transaction_hash
0x57381e739ae096960b6136d3abd0904c36a86a86-276423false0x000000000011650e52806dc33ec54f2aa56eaacf513809454516427768468-136668723658833715301105888450777940x000000000011650e52806dc33ec54f2aa56eaacf2025-06-01T08:26:45.000Z788374464754282618515860x1d55f616549707076c152ed03b4629d6af61a3aff0ed9583acfe91b1a7d7860f
0x57381e739ae096960b6136d3abd0904c36a86a86-276423false0x2003f7211071c84870fc284a17324ae840df4a4d758897704737981435396-582949873658741015301105888450777940x2003f7211071c84870fc284a17324ae840df4a4d2025-06-01T07:09:25.000Z788399411707166461646100x52062ccb64288adfb053849f8d006cd9d92c270eaaef4bd5174633257fc28df8
0x57381e739ae096960b6136d3abd0904c36a86a86-276424false0x000000000011650e52806dc33ec54f2aa56eaacf513188904878923409467-130521463658990215301105888450777940x45e3de35dab1a692cc8625dc2a817c8eae414f212025-06-01T10:39:45.000Z788357002706156834538250xdf2ff90182375b7d2f1cd9fd691d79fbc57b735aa9c504a14d37e31f5178190b
Query with partition filter
SELECT *
FROM `tt-contracts.mimo_v3_iotex.Pool_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100