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
100000x30f317a9ec0f0d06d5de0f8d248ec3506b7e4a8a0x96526094f6e4580a57a8c2cad6c6edb7539a0036false0x17476dc3eda45ad916ceaddea325b240a7fb259d0xff7412ea7c8445c46a8254dfb557ac1e480943911746757172002024-05-12T02:35:42.000Z0x542ef9eca9d5e22475491c27dbac5c982191243472dfae7ea8c2f7c3618278d1
100000x30f317a9ec0f0d06d5de0f8d248ec3506b7e4a8a0xf7f45f29f73938854b132ab1318fd78c9d3566aefalse0xb6e57fbb2d44092f75d9da2769ffc788ce9313200xff7412ea7c8445c46a8254dfb557ac1e480943918746759252002024-05-12T02:43:34.000Z0x8550ddda3f67bb6f9c6e00ea2a6769d8c9ff9dd2e1ea483c0d5d74ebf100e4ae
100000x30f317a9ec0f0d06d5de0f8d248ec3506b7e4a8a0xb4893e6bb440651d24020f2109ca332e530eeb85false0x49d3f7543335cf38fa10889ccff10207e22110b50xb3f18b584263191a33169f6393487e43e95863297718184792002024-02-17T16:59:25.000Z0xa4d348c38737e0109099c3eb418a3293e6ee444ff23f423ea97d8f426f2814fd
Query with partition filter
SELECT *
FROM `tt-contracts.xdc_v3_xdc.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
0x1b644c6a468adb25b172214a9cd01ab0d75ba15afalse0x6d22833398772d7da9a7cbcfdee98342cce154d40300898582093284003578002025-06-13T13:00:11.000Z0x518ac1bb6d57f7d7add457dfec88108f89fcb19629fa6e412fccc694023c648d
0x1b644c6a468adb25b172214a9cd01ab0d75ba15afalse0x6d22833398772d7da9a7cbcfdee98342cce154d40000898368883284003578002025-06-13T00:04:12.000Z0x4660fd94309faaadb19fbdf102167f77e0d5cbd8fd8d0b4ad75e1ddf2b1a0de1
0x1b644c6a468adb25b172214a9cd01ab0d75ba15afalse0x6d22833398772d7da9a7cbcfdee98342cce154d40000898396613284003578002025-06-13T01:44:01.000Z0xae56346e3d8460fc937f4a3fed62bbfe0324247f0f589102ff5231b3000004a1
Query with partition filter
SELECT *
FROM `tt-contracts.xdc_v3_xdc.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
0x1b644c6a468adb25b172214a9cd01ab0d75ba15afalse0x6d22833398772d7da9a7cbcfdee98342cce154d420114646015694045061493898368880xe1ae2f74310738463f269489a5d129a4d5b7f64a3284003578002025-06-13T00:04:12.000Z0x4660fd94309faaadb19fbdf102167f77e0d5cbd8fd8d0b4ad75e1ddf2b1a0de1
0x1b644c6a468adb25b172214a9cd01ab0d75ba15afalse0x6d22833398772d7da9a7cbcfdee98342cce154d420561850055738717908170898396610xe1ae2f74310738463f269489a5d129a4d5b7f64a3284003578002025-06-13T01:44:01.000Z0xae56346e3d8460fc937f4a3fed62bbfe0324247f0f589102ff5231b3000004a1
0x1b644c6a468adb25b172214a9cd01ab0d75ba15afalse0x6d22833398772d7da9a7cbcfdee98342cce154d450653230005202573883423898582090xe1ae2f74310738463f269489a5d129a4d5b7f64a3284003578002025-06-13T13:00:11.000Z0x518ac1bb6d57f7d7add457dfec88108f89fcb19629fa6e412fccc694023c648d
Query with partition filter
SELECT *
FROM `tt-contracts.xdc_v3_xdc.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.
addressremovedin_paid0in_paid1in_senderlog_indexin_amount0in_amount1block_numberin_recipientblock_timestamptransaction_hash
0x712d30c0975386b043e09224433f400ea87cab7dfalse01000000000000x0921e8c348b912ca3fdf9dcbb600996e7b26f9664201000000000000000853368530x0921e8c348b912ca3fdf9dcbb600996e7b26f9662025-02-21T04:35:50.000Z0xf4983a908397a79609de52258e075bc8b7bd08bec32e5da1c02b4c524b5c23f3
0x712d30c0975386b043e09224433f400ea87cab7dfalse0131072000000000000x0921e8c348b912ca3fdf9dcbb600996e7b26f966260131072000000000000000853508900x0921e8c348b912ca3fdf9dcbb600996e7b26f9662025-02-21T12:54:23.000Z0x560fdc8951d84d408faf12a6a5b38a7d52478d588f64d044290631e5cab817e0
0x712d30c0975386b043e09224433f400ea87cab7dfalse016384000000000000x0921e8c348b912ca3fdf9dcbb600996e7b26f96663016384000000000000000853660580x0921e8c348b912ca3fdf9dcbb600996e7b26f9662025-02-21T21:56:17.000Z0x64027f1d713d01fca7647531c1a7ef714725c0457f8b90588df6c9a98e5b7a4a
Query with partition filter
SELECT *
FROM `tt-contracts.xdc_v3_xdc.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
0xd8402e028eb18a492ebd7462c270c70c61fc85cffalse0x6d22833398772d7da9a7cbcfdee98342cce154d42117428005158925002234720x6d22833398772d7da9a7cbcfdee98342cce154d441844711497043047752729419309335842204461790071064931-43740-433802024-01-28T14:51:03.000Z0x54399d411678e7d1e55939edd8d68364037da3eb0f77a6f1d69f9d7f5251b41e
0xb06c5d0b8d11f75675cfe937b7f687cf6dfaba24false0x6d22833398772d7da9a7cbcfdee98342cce154d4705045283620033138190x6d22833398772d7da9a7cbcfdee98342cce154d452326766251129777564285331452257018732571067151680001602002024-01-28T16:07:42.000Z0x87b8c204f5a54dc5aca9285e4bbfaf7a6a74864fe128f0bda18c20fd7b14b40e
0x87d66705f5ad1121f27d59c309f552b0f410a82cfalse0x6d22833398772d7da9a7cbcfdee98342cce154d49803436955630044356780x6d22833398772d7da9a7cbcfdee98342cce154d45192214752286025744518499999999999999999999271056449-8872008872002024-01-28T10:02:52.000Z0x07ab50a6a1e9f783cff0c81db143302a6ed7b4c1f3619a49c54d7e0d9c496a04
Query with partition filter
SELECT *
FROM `tt-contracts.xdc_v3_xdc.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
0x789d5d3dd968a763d20f540d085df58223d139fc-304343false0x07f82a671a407ef188e4b8210d076d93a435a3da5814400090000000000000-876080898477706900909813576350x07f82a671a407ef188e4b8210d076d93a435a3da2025-06-13T06:36:09.000Z195211535903544945860450x2ac1c8f54d17d4abf66b4f8dda82887012a79ca1abd43c0d71610d36446da0d9
0x789d5d3dd968a763d20f540d085df58223d139fc-304240false0x07f82a671a407ef188e4b8210d076d93a435a3da467900090000000000000-484475898394146900909813576350x07f82a671a407ef188e4b8210d076d93a435a3da2025-06-13T01:35:31.000Z196217349059129831129220x4c0e59cb996fa5c757ad511b511a5ba1b9d1cd998b1d8545a1eaf68fd68ca1dc
0x789d5d3dd968a763d20f540d085df58223d139fc-304183false0x07f82a671a407ef188e4b8210d076d93a435a3da208100090000000000000-499601898389016900909813576350x07f82a671a407ef188e4b8210d076d93a435a3da2025-06-13T01:17:03.000Z196773567553706434069120x4839a8cc7359d774a524f096f8b5963d50585093d28be4e5037060e8d67dd316
Query with partition filter
SELECT *
FROM `tt-contracts.xdc_v3_xdc.Pool_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100