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
1000x5bd1f6735b80e58aac88b8a94836854d3068a13a0xdc82144246f20b7591c26a9338a7adae2a6bdfd5false0x0dc808adce2099a9f62aa87d9670745aba7417460xb73603c5d87fa094b7314c74ace2e64d165016fb027706312023-10-11T03:23:09.000Z0x6fa0b65442a7f1bebb37955a05e4602d121aca68ee95f5841f4df3bd6d17760c
1000x5bd1f6735b80e58aac88b8a94836854d3068a13a0xb1d248be37c19c3c1539be906c85c617a91323bafalse0x0dc808adce2099a9f62aa87d9670745aba7417460x2fe3ad97a60eb7c79a976fc18bb5ffd07dd94ba505785212023-09-15T18:27:59.000Z0xfdcf9127f4aeaafca54e65b04ff05a2a60f2176ad031bd98152febd7e29f6cb6
1000x5bd1f6735b80e58aac88b8a94836854d3068a13a0xa10206a00dcab230fa85b6d77e902f532a6ef14afalse0x1c466b9371f8aba0d7c458be10a62192fcb8aa710xf417f5a458ec102b90352f697d6e2ac3a3d2851f1685335912023-09-15T05:59:09.000Z0xbf4a863f982a394421898f988b5680bee0430ba2c1aef8f02fc8a1a0e6a5b16c
Query with partition filter
SELECT *
FROM `tt-contracts.apertureswap_v1_manta.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
0x7cb96b00c02e9d93ce32a06ebd6f47c13643942efalse0xe77e3f98a386a4c8f8c706a2acffdf57e70d06c6102133106837423000679071796016223340401083865172130769-2060-502023-09-24T05:00:49.000Z0x2ce665ac3979c5f8d05810a083a1bb8056f8c9ae1fe11e5b34e0d9d74f54078c
0x553f4ebe95a796af390019b9dbdd8e94014780c5false0xe77e3f98a386a4c8f8c706a2acffdf57e70d06c60430077374921600235802023-12-07T15:04:09.000Z0x4170e4a527236b99b4aa60c72e625cecc6da27f250be896d133a90536387a910
0x553f4ebe95a796af390019b9dbdd8e94014780c5false0xe77e3f98a386a4c8f8c706a2acffdf57e70d06c60160077335422440235802023-12-07T13:58:19.000Z0xca5ecfc1312e8ac8d87952703956984331a8543894c591300c4d93c3f675f8a6
Query with partition filter
SELECT *
FROM `tt-contracts.apertureswap_v1_manta.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
0xfee7caae3540d7dbe325b34e57e596139cc81f4efalse0xe77e3f98a386a4c8f8c706a2acffdf57e70d06c64154789107315232872354485710xb99b470cf2db7e2963f5f28d7f701454d09b783f-1001002023-10-30T23:47:49.000Z0x7d5c4649e4ed594af9211d5e060b532068ddb0200dadb2d2c86f5cd9b730024c
0xd7f09148eb22686cb5dcbdd0cf27d04123d14c74false0xe77e3f98a386a4c8f8c706a2acffdf57e70d06c64135530290333121634744440180xe77e3f98a386a4c8f8c706a2acffdf57e70d06c6-203570-2015702023-10-30T11:08:59.000Z0xd3d59a52ba24a340d86aa37dc48698adf4d229fc4acc581e50ab1299e31fb035
0xd7f09148eb22686cb5dcbdd0cf27d04123d14c74false0xe77e3f98a386a4c8f8c706a2acffdf57e70d06c64750202137007939052164446270xe77e3f98a386a4c8f8c706a2acffdf57e70d06c6-203360-2013502023-10-30T12:50:29.000Z0xc3f5dca1990177c22cbff9a552d3adf6ac39a685bf7f98c8c66705a0d29c698e
Query with partition filter
SELECT *
FROM `tt-contracts.apertureswap_v1_manta.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
0x553f4ebe95a796af390019b9dbdd8e94014780c5false5153800x21bf277a0e437ec1936edb7cb7a3c0acea62290c141717930908807360x0839649fc7cbf74fea6978affdce3cadd7495f062023-12-20T00:15:19.000Z0x3e387037267da68285f5c61aa01f1bffe7ecae14dd0c318cac996a301c1bbd50
0x177b0d886f673a0d1df92a906689068394e1b5affalse06031926069151788630x21bf277a0e437ec1936edb7cb7a3c0acea62290c360603192606915178862039739400x0839649fc7cbf74fea6978affdce3cadd7495f062023-12-30T19:09:19.000Z0x27fb060fd436a6c2d050871869a84b47d297c1d63310845c6543c340bb2e871e
0xa28ec66e6b3936fa80d3314cd3d09f2726fc989efalse093320x21bf277a0e437ec1936edb7cb7a3c0acea62290c5409331669694040x0839649fc7cbf74fea6978affdce3cadd7495f062023-12-30T06:33:19.000Z0x80634b8693ff58e727b0f3694567b90394fd50bbdedb206f540288eb40aa1fd6
Query with partition filter
SELECT *
FROM `tt-contracts.apertureswap_v1_manta.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
0xd7f09148eb22686cb5dcbdd0cf27d04123d14c74false0xe77e3f98a386a4c8f8c706a2acffdf57e70d06c61883347026730xe77e3f98a386a4c8f8c706a2acffdf57e70d06c62332261995331425355139845354936-225690-1796402023-10-20T03:41:59.000Z0x194904673d93b28da6f4c60e038504ff1d8b4fd4ce26b9da1520fd5ffa93dc88
0xd7f09148eb22686cb5dcbdd0cf27d04123d14c74false0xe77e3f98a386a4c8f8c706a2acffdf57e70d06c61924631701870xe77e3f98a386a4c8f8c706a2acffdf57e70d06c63333068352796164425236792356068-225690-1796402023-10-20T06:50:39.000Z0x4ad2e194bb1717c6aa9aa9f3442dd863ee10febbd85b84cb95438d3fb716124a
0xd7f09148eb22686cb5dcbdd0cf27d04123d14c74false0xe77e3f98a386a4c8f8c706a2acffdf57e70d06c655531864960610xe77e3f98a386a4c8f8c706a2acffdf57e70d06c61939984178710796226732089361142-203120-2019202023-10-20T20:56:19.000Z0x7a0cacc86296ecc51e8d5abc7cf5157a7246cdc3ded8b6cd361957bb560439bf
Query with partition filter
SELECT *
FROM `tt-contracts.apertureswap_v1_manta.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
0x016b36fe5a322e1bffcec489335fb4543f1f5c41-283188false0x3488d5a2d0281f546e43435715c436b46ec1c67813-1619031071633547619335610000000000x2c772eef4aa4af21bab416654bbaa25cf341c1bf2023-10-01T10:51:59.000Z562136153070690639326700x16ed108a605862d3b538e87b7380813273efa9d3b211894d2dfb1994de4ea3ed
0x5fc070379287d52826fa532bde1270897e2b44a2-286483false0x3488d5a2d0281f546e43435715c436b46ec1c67810200000000000043-7619335620000000000x3488d5a2d0281f546e43435715c436b46ec1c6782023-10-01T10:51:59.000Z476756796615794845763090x16ed108a605862d3b538e87b7380813273efa9d3b211894d2dfb1994de4ea3ed
0xffeee0b83fd00032cb035b57a725c9670dfa6f2f-201893false0x3488d5a2d0281f546e43435715c436b46ec1c67810-1493736124374395925103127197601346635296156060x3488d5a2d0281f546e43435715c436b46ec1c6782023-10-01T22:39:29.000Z32738800586814235974234520x7e4fc3be1756b1d58bea87cb54706e52266312f1c624f8f364169a7c45880fba
Query with partition filter
SELECT *
FROM `tt-contracts.apertureswap_v1_manta.Pool_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100