Skip to main content

Tables

AlgebraFactory_Pool_event

Pool creation events emitted by Algebra DEX (Decentralized Exchange) factory contracts, recording the deployment of new liquidity pools with their token pair addresses. Used for tracking pool deployments and identifying tradable pairs across Algebra-based DEX implementations.
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_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
addressin_poolremovedin_token0in_token1log_indexblock_numberblock_timestamptransaction_hash
0x9e92b57bff702530a0c3be9ff5fe2c24f95a91f60xa7e84de1f48743143223ba17153ea88732490cd2false0x7c6b91d9be155a6db01f749217d76ff02a7227f20xe7798f023fc62146e8aa1b36da45fb70855a77ea59137332132024-01-17T10:22:16.000Z0xa3ee4f41cb74bf02631f55d8fd144145ac9fa0082686259c20e0a9a3e2dad9ca
0x9e92b57bff702530a0c3be9ff5fe2c24f95a91f60x2c8d50474decffbae19cb2af02d646897b2b869cfalse0x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f30xe7798f023fc62146e8aa1b36da45fb70855a77ea80141773992024-01-22T13:45:22.000Z0x711a582663f00a7cac00444d8b91545d5032db2c98cd5fb4b76f3bf5445a95a7
0x9e92b57bff702530a0c3be9ff5fe2c24f95a91f60x14054241589d8b97f8cb5ce753334f9ae93c12a8false0x7c6b91d9be155a6db01f749217d76ff02a7227f20x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f385141773202024-01-22T13:44:03.000Z0x474d083c95778fb4fb87d284f6a9f9692a85a316cbaeb87b8567f4ffa4ec9983
Query with partition filter
SELECT *
FROM `tt-contracts.thena_v2_opbnb.AlgebraFactory_Pool_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AlgebraPool_Burn_event

Liquidity removal events from Algebra-based concentrated liquidity pools. Records owner address, tick range boundaries, withdrawn liquidity amount, and returned token0/token1 quantities for position burning operations.
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_bottomTickINT64Lower bound of the tick range for a concentrated liquidity position. Signed integer value representing the price interval boundary in Uniswap V3-style concentrated liquidity pools.
in_topTickINT64Upper bound of the tick range for a concentrated liquidity position. Signed integer value representing the price interval boundary in Uniswap V3-style concentrated liquidity pools.
in_liquidityAmountSTRINGAmount of liquidity added to or removed from a concentrated liquidity position. Numeric string representation of liquidity units in the position’s tick range.
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_amount1in_topTickblock_numberin_bottomTickblock_timestamptransaction_hashin_liquidityAmount
0x55ce9b92f2d0a842e639c354d72f2e85c5382e5ffalse0x09efc1a1837e835c21a73ea8ef7d7330c5bc86928600-1549034278087-8872702024-09-11T05:16:50.000Z0x815a4f59075107f0e825964ae766ada705e11632c0643e361a1505699f20c84b0
0x55ce9b92f2d0a842e639c354d72f2e85c5382e5ffalse0x09efc1a1837e835c21a73ea8ef7d7330c5bc86928500-1357034278087-154902024-09-11T05:16:50.000Z0x815a4f59075107f0e825964ae766ada705e11632c0643e361a1505699f20c84b0
0x55ce9b92f2d0a842e639c354d72f2e85c5382e5ffalse0x09efc1a1837e835c21a73ea8ef7d7330c5bc8692100-1501034323738-157402024-09-11T17:57:41.000Z0xa2b573d87e6d18351f9c4408ae80e5b03dda6a3efb1c75342d414893fd1836650
Query with partition filter
SELECT *
FROM `tt-contracts.thena_v2_opbnb.AlgebraPool_Burn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AlgebraPool_Collect_event

Concentrated liquidity position fee collection events from Algebra protocol pools. Records token amounts withdrawn by position owners from specific tick ranges, including owner address, recipient address, and collected quantities of both token0 and token1.
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_bottomTickINT64Lower bound of the tick range for a concentrated liquidity position. Signed integer value representing the price interval boundary in Uniswap V3-style concentrated liquidity pools.
in_topTickINT64Upper bound of the tick range for a concentrated liquidity position. Signed integer value representing the price interval boundary in Uniswap V3-style concentrated liquidity pools.
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_amount1in_topTickblock_numberin_recipientin_bottomTickblock_timestamptransaction_hash
0x55ce9b92f2d0a842e639c354d72f2e85c5382e5ffalse0x09efc1a1837e835c21a73ea8ef7d7330c5bc8692525970965885079336970887270697225360x09efc1a1837e835c21a73ea8ef7d7330c5bc8692-153202025-07-24T06:58:49.000Z0x4d4a64ac634a9cae51081db3c058ecb0caedd4634943aac26da9f0ca35411139
0x55ce9b92f2d0a842e639c354d72f2e85c5382e5ffalse0x09efc1a1837e835c21a73ea8ef7d7330c5bc869210161841869867487648132438899993739974-15320697225360x09efc1a1837e835c21a73ea8ef7d7330c5bc8692-160502025-07-24T06:58:49.000Z0x4d4a64ac634a9cae51081db3c058ecb0caedd4634943aac26da9f0ca35411139
0x2c8d50474decffbae19cb2af02d646897b2b869cfalse0x27681cb9c7c834e7e55c009a2760f5121e61edbd5475432724448751179891176958961366-80280697799110x27681cb9c7c834e7e55c009a2760f5121e61edbd-820902025-07-24T14:56:57.000Z0x7c2c02c5fb7d436cb5cc742e3491d4c3afac22b984520c8a6a6c79ba82f0e539
Query with partition filter
SELECT *
FROM `tt-contracts.thena_v2_opbnb.AlgebraPool_Collect_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AlgebraPool_CommunityFee_event

Community fee configuration change events from Algebra DEX (Decentralized Exchange) liquidity pools. Records protocol fee adjustments for token0 and token1, used for tracking fee policy changes across pool contracts.
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_communityFee0NewSTRINGUpdated community fee rate for token0 in basis points. Integer value representing the fee percentage allocated to the community, where 100 equals 1%.
in_communityFee1NewSTRINGUpdated community fee rate for token1 in basis points. Integer value representing the fee percentage allocated to the community, where 100 equals 1%.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_communityFee0Newin_communityFee1New
0x2c8d50474decffbae19cb2af02d646897b2b869cfalse5141774342024-01-22T13:45:57.000Z0x0dd4b4588c4952819166bfe1b06550ccaef5bf94fd1f9ded44e5fe996767575e00
0x14054241589d8b97f8cb5ce753334f9ae93c12a8false16141773532024-01-22T13:44:36.000Z0x94970f46d72e7919ce6c805e9f5c616d88e10aa9d58cd5c750d2f2b161d327c800
0xa7e84de1f48743143223ba17153ea88732490cd2false33137333512024-01-17T10:24:34.000Z0xc597f6bed0c08774f6cb9c92c5010ec0d735e84cfb8b3172b325d6aa57d4626c00
Query with partition filter
SELECT *
FROM `tt-contracts.thena_v2_opbnb.AlgebraPool_CommunityFee_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AlgebraPool_Fee_event

Fee change events emitted by Algebra-based liquidity pools when the pool’s fee tier is updated. Records the new fee amount in basis points, used for tracking dynamic fee adjustments in concentrated liquidity protocols.
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_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_feeaddressremovedlog_indexblock_numberblock_timestamptransaction_hash
12770x14054241589d8b97f8cb5ce753334f9ae93c12a8false3633904532025-06-17T15:31:28.000Z0x38668aa60e660a2a30271189684f0c3f803f19c7762a6dca5765d3ae8bb4ac3d
12770x14054241589d8b97f8cb5ce753334f9ae93c12a8false18633903312025-06-17T15:30:27.000Z0x32dc09ef11941ec156705a4631d7ad15a208974515693789e427e32ff119d087
12770x14054241589d8b97f8cb5ce753334f9ae93c12a8false5633876962025-06-17T15:08:29.000Z0xf6e0e1f1769fdfdeb39db1cae812395983ca8f14aa427fb76c4c45ab95c189aa
Query with partition filter
SELECT *
FROM `tt-contracts.thena_v2_opbnb.AlgebraPool_Fee_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AlgebraPool_Mint_event

Liquidity addition events from Algebra-based concentrated liquidity pools containing sender, owner, token amounts, tick range boundaries, and liquidity units. Used for tracking liquidity provider positions and pool depth changes across Algebra DEX deployments.
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_bottomTickINT64Lower bound of the tick range for a concentrated liquidity position. Signed integer value representing the price interval boundary in Uniswap V3-style concentrated liquidity pools.
in_topTickINT64Upper bound of the tick range for a concentrated liquidity position. Signed integer value representing the price interval boundary in Uniswap V3-style concentrated liquidity pools.
in_liquidityAmountSTRINGAmount of liquidity added to or removed from a concentrated liquidity position. Numeric string representation of liquidity units in the position’s tick range.
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_senderlog_indexin_amount0in_amount1in_topTickblock_numberin_bottomTickblock_timestamptransaction_hashin_liquidityAmount
0x2c8d50474decffbae19cb2af02d646897b2b869cfalse0xa2baca4cf3e9f2901d1be9bdee20a6f93fb34cb40xa2baca4cf3e9f2901d1be9bdee20a6f93fb34cb4332426410068968504183088727056339382-746602025-05-07T20:12:32.000Z0x02af8e30d90375847497b88de3befae81cb797497d917107de9ef5be2f53124958052904635513429
0x2c8d50474decffbae19cb2af02d646897b2b869cfalse0xa2baca4cf3e9f2901d1be9bdee20a6f93fb34cb40xa2baca4cf3e9f2901d1be9bdee20a6f93fb34cb431602569657123444346918970383058990019-7466056339382-765602025-05-07T20:12:32.000Z0x02af8e30d90375847497b88de3befae81cb797497d917107de9ef5be2f53124910318348262082298219
0x2c8d50474decffbae19cb2af02d646897b2b869cfalse0xa2baca4cf3e9f2901d1be9bdee20a6f93fb34cb40xa2baca4cf3e9f2901d1be9bdee20a6f93fb34cb42291387817306121128600-7428056323169-749902025-05-07T17:57:26.000Z0x21af339022d98e5cbfe4c0b20e1bbb65ae1636d5984cfc8b1cdd615dd10d6f966166822649312374034
Query with partition filter
SELECT *
FROM `tt-contracts.thena_v2_opbnb.AlgebraPool_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

AlgebraPool_Swap_event

Swap events from Algebra Protocol concentrated liquidity pools containing sender, recipient, token amounts exchanged, post-swap price and tick, and liquidity depth. Used for DEX trade analysis and liquidity tracking.
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_priceSTRINGPrice of the asset or position in the transaction or event. Numeric string representation in smallest denomination or with extended precision.
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_pricein_senderlog_indexin_amount0in_amount1block_numberin_liquidityin_recipientblock_timestamptransaction_hash
0x55ce9b92f2d0a842e639c354d72f2e85c5382e5f-17183false335565747871578555054872206640x000000000000c6399510f47ef7691db4db17ae8a341928370880486119-751994748953991873351425154788786200797828300x000000000000c6399510f47ef7691db4db17ae8a2025-08-14T06:59:34.000Z0x0223124c46701cd8ae282deab96ff8a47d4242c71c67ee3f5091d8dd46a27eca
0x55ce9b92f2d0a842e639c354d72f2e85c5382e5f-17152false336093600926237707748684611180x000000000000c6399510f47ef7691db4db17ae8a345856210085358215-825090584649854373348958154788786200797828300x000000000000c6399510f47ef7691db4db17ae8a2025-08-14T06:39:00.000Z0xa52bc594fb300c87a106e5b0030752f094a44eb4b88d9d720a62c63e6921b379
0xdc83c475dab357b6c3cd66e1a16cfdab0899256067263false22877725670612447298657055906870x000000000000c6399510f47ef7691db4db17ae8a315490269984416249-129417725875804045717344994261797881242941901410x000000000000c6399510f47ef7691db4db17ae8a2025-08-14T20:40:32.000Z0xedc6fb55a7723c3298bdaed9af00e8acb3a9d7928cf564fdf42cace5540462e9
Query with partition filter
SELECT *
FROM `tt-contracts.thena_v2_opbnb.AlgebraPool_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100