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
1000x1f98431c8ad98523631ae4a59f267346ea31f9840x2a5d24e8927577b7eedb96449b79a380a6bdd008false0x0ef9dc2e6f43b5ef5aff536507edcd8bd55eb31b0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc22191390243912021-12-29T20:33:37.000Z0xb08fd78fe53e6f5ceef6a9fd7ced70e50c473bbfcae6a6cb8943637a1b821d49
30000x1f98431c8ad98523631ae4a59f267346ea31f9840xa826fa3f97e0c07395f15c97f3e55f628283e6b9false0x0ee8820f8bccf5e0da82c6a60853ab74be9b4c6e0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc244013898878602021-12-29T07:26:43.000Z0x5988f0dedaf867e389961bb786f7808432d3375d9de7a646a3cfa1837d1d1f13
30000x1f98431c8ad98523631ae4a59f267346ea31f9840x1686c1c53b67d285ffaf524bd01b2d4f709d258ffalse0x9ceb36379c83d781c04d1eb19bb4e6a1689f6ff20xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc28213897993602021-12-29T04:16:42.000Z0xfd029930c0c5126f41c4aad5316e191cc173b78d7582d87b6bac89712246b309
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.Factory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NonfungiblePositionManager_burn_function

Uniswap V3 liquidity position NFT (Non-Fungible Position Manager) burn function calls on Ethereum, recording when LPs permanently destroy position tokens after removing all liquidity. Used for tracking position lifecycle completion and LP exit behavior.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_tokenIdSTRINGUnique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID.
gasvaluestatusgas_usedsignaturein_tokenIdto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
771670true666680x42966c681521160xc36442b4a4522e871399cd717abdd847ab11fe88137029530x1f40da07d23fb4c71a4268cd05828436bfb261b4102021-11-28T14:39:34.000Z0xc6dcbdb029e8b74669c9b8c9389519f3b018983dc6b1999ad26cf275071218e4
771670true666680x42966c681490520xc36442b4a4522e871399cd717abdd847ab11fe88137050820x1f40da07d23fb4c71a4268cd05828436bfb261b4102021-11-28T22:51:42.000Z0xaf9ec87071e9410729de5a687f67a43bc8cf1eb23bd226931f88d46b641c0a8d
771670true666680x42966c681484440xc36442b4a4522e871399cd717abdd847ab11fe88137010230x1f40da07d23fb4c71a4268cd05828436bfb261b4102021-11-28T07:17:33.000Z0xf3d45ad5e9103c9a60b978c87152cd996a45937f2d0d80f1dfe61f3b2c65455b
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.NonfungiblePositionManager_burn_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NonfungiblePositionManager_Collect_event

Fee collection events from Uniswap V3 liquidity positions on Ethereum, emitted when position holders withdraw accumulated trading fees. Contains token amounts, position IDs (NFT tokenId), and recipient addresses for tracking fee earnings and liquidity provider revenue.
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_tokenIdSTRINGUnique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID.
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.
addressremovedlog_indexin_amount0in_amount1in_tokenIdblock_numberin_recipientblock_timestamptransaction_hash
0xc36442b4a4522e871399cd717abdd847ab11fe88false1567936379789928607653249252954375167286138210060x0026ec57900be57503efda250328507156dac9822021-12-17T06:27:04.000Z0x48ea6cf6e3fe1da4529dffc969ae80ea3cb48bd84224bde975feac346394a3e8
0xc36442b4a4522e871399cd717abdd847ab11fe88false2316414492785970880686835353323572872161870138223810x062af5c66b8581176411de7ce09f1f7ed30cac372021-12-17T11:26:32.000Z0x50bb6949084392a91c1222a00183bcc512ea22377347c31518bf8871bab7ed0f
0xc36442b4a4522e871399cd717abdd847ab11fe88false153164970356995262477101575350995696138220560x0ac8e78da8d115af5c8c57a2cded11cffd64d0d72021-12-17T10:13:34.000Z0xd48dacb9a9848ae98e4555edb0894a76bcd057adb97c119ed60ef89093db66ac
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.NonfungiblePositionManager_Collect_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NonfungiblePositionManager_collect_function

Fee collection transactions from Uniswap V3 liquidity positions on Ethereum, tracking earned trading fees withdrawn by position holders. Contains position ID (tokenId), recipient addresses, and collected amounts in both tokens (amount0/amount1) for analyzing LP profitability and fee harvesting behavior.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_paramsSTRUCT<tokenId STRING, recipient STRING, amount0Max STRING, amount1Max STRING>Additional initialization parameters encoded as bytes. Hex-encoded string used for protocol-specific configuration data during contract initialization or cross-chain operations.
out_amount0STRINGAmount of token0 returned or withdrawn from the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
out_amount1STRINGAmount of token1 returned or withdrawn from the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
gasvaluestatusgas_usedin_paramssignatureto_addressout_amount0out_amount1block_numberfrom_addresstrace_addressblock_timestamptransaction_hash
4004210true259587{“tokenId”:“323302”,“recipient”:“0xea16545cf2e4c30b38b156cda0972be63ce71d50”,“amount0Max”:“398589324822706760000000000”,“amount1Max”:“117236753317269450”}0xfc6f78650xc36442b4a4522e871399cd717abdd847ab11fe88398589324822706760000000000117236753317269450156134320xea16545cf2e4c30b38b156cda0972be63ce71d502022-09-25T22:40:35.000Z0xdae98d7c521ce65700a774b6b4c82a9aba3b2a541b51d071cde483c5613961bb
2155160true136200{“tokenId”:“320978”,“recipient”:“0xea16545cf2e4c30b38b156cda0972be63ce71d50”,“amount0Max”:“63007541246”,“amount1Max”:“63007541246438700000000”}0xfc6f78650xc36442b4a4522e871399cd717abdd847ab11fe886128120625963007541246438698349012156137590xea16545cf2e4c30b38b156cda0972be63ce71d502022-09-25T23:46:23.000Z0x16e3b2bbdf15966c4b4952b6f0c309ac5a22df39fcf6cf6df60c5d7852e27a3c
1680510true136200{“tokenId”:“310950”,“recipient”:“0xb64df007c167ca403fc6f9b1a4ada2531c66c994”,“amount0Max”:“340282366920938463463374607431768211455”,“amount1Max”:“340282366920938463463374607431768211455”}0xfc6f78650xc36442b4a4522e871399cd717abdd847ab11fe888689947559088525458662420123305970156070930xb64df007c167ca403fc6f9b1a4ada2531c66c9942022-09-25T01:27:11.000Z0xf3a3f290acbea8cf07e375e625c31442ba3fed507b024148efb1149a54da6cf7
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.NonfungiblePositionManager_collect_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NonfungiblePositionManager_DecreaseLiquidity_event

Liquidity removal events from Uniswap V3 NFT positions on Ethereum, capturing when liquidity providers decrease their position size. Records the position token ID, liquidity amount removed, and token amounts withdrawn for analyzing LP behavior and position management strategies.
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_tokenIdSTRINGUnique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID.
in_liquiditySTRINGTotal liquidity available in the pool at the time of the event. Numeric string representation of liquidity 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.
addressremovedlog_indexin_amount0in_amount1in_tokenIdblock_numberin_liquidityblock_timestamptransaction_hash
0xc36442b4a4522e871399cd717abdd847ab11fe88false2560999999999938267616186314125625115722022-12-14T23:47:11.000Z0xd4f111175f4ceedfad7fdbe91d3cbe04a042c64fa469489758ca2de502ffe487
0xc36442b4a4522e871399cd717abdd847ab11fe88false2568139854568247738856813781738281437397816180207116061618370466262022-12-14T03:19:23.000Z0x7c0313249ac4fba506c7404bbbff14ae65f63189d5219c13eed7f95d24e1a64b
0xc36442b4a4522e871399cd717abdd847ab11fe88false51213066818588555175461841185600177475070529311051161835001880731244302617879932022-12-14T14:22:47.000Z0xa8b9a20b8134f674184399a88dd786b43a28d1acc420a605bd39a1c63fe67f41
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.NonfungiblePositionManager_DecreaseLiquidity_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NonfungiblePositionManager_decreaseLiquidity_function

Liquidity removal transactions from Uniswap V3 concentrated liquidity positions on Ethereum, tracking position ID, liquidity amount withdrawn, and token amounts received. Used for analyzing LP exit behavior, position rebalancing patterns, and fee collection 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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_paramsSTRUCT<tokenId STRING, liquidity STRING, amount0Min STRING, amount1Min STRING, deadline STRING>Additional initialization parameters encoded as bytes. Hex-encoded string used for protocol-specific configuration data during contract initialization or cross-chain operations.
out_amount0STRINGAmount of token0 returned or withdrawn from the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
out_amount1STRINGAmount of token1 returned or withdrawn from the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
gasvaluestatusgas_usedin_paramssignatureto_addressout_amount0out_amount1block_numberfrom_addresstrace_addressblock_timestamptransaction_hash
2473510true139927{“tokenId”:“434917”,“deadline”:“1676092067”,“liquidity”:“5197383553”,“amount0Min”:“8351204661”,“amount1Min”:“139573791”}0x0c49ccbe0xc36442b4a4522e871399cd717abdd847ab11fe888360113020140331487166031810xc36442b4a4522e871399cd717abdd847ab11fe8802023-02-11T04:38:23.000Z0x169341bcb824cfa6acc6d84f835ec600aa4ac335236cb2d605036ecfe90d4ec8
2421720true131213{“tokenId”:“418985”,“deadline”:“1676085611”,“liquidity”:“5546562287332905144557”,“amount0Min”:“153036865947590345729656”,“amount1Min”:“0”}0x0c49ccbe0xc36442b4a4522e871399cd717abdd847ab11fe881530368659475903457296560166026490xc36442b4a4522e871399cd717abdd847ab11fe8802023-02-11T02:50:47.000Z0x1fb37282c89684896c9633b1e9e8850b34edd045cd3aca58c41ca431ddfa3321
3509780true242285{“tokenId”:“363821”,“deadline”:“1676077007”,“liquidity”:“3136433938008297942”,“amount0Min”:“251192221883886706”,“amount1Min”:“353313108129903364”}0x0c49ccbe0xc36442b4a4522e871399cd717abdd847ab11fe88315643133278582709446452276350952181166019380xc36442b4a4522e871399cd717abdd847ab11fe8802023-02-11T00:27:47.000Z0x5fb85b61fd3127a29d4a24049d9d69f97890193ad413ea9323ad4d44ec799b64
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.NonfungiblePositionManager_decreaseLiquidity_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NonfungiblePositionManager_IncreaseLiquidity_event

Liquidity additions to existing Uniswap V3 positions on Ethereum, emitted when users add tokens to their concentrated liquidity ranges. Records token amounts deposited, liquidity units added, and position NFT identifiers for tracking LP 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_tokenIdSTRINGUnique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID.
in_liquiditySTRINGTotal liquidity available in the pool at the time of the event. Numeric string representation of liquidity 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.
addressremovedlog_indexin_amount0in_amount1in_tokenIdblock_numberin_liquidityblock_timestamptransaction_hash
0xc36442b4a4522e871399cd717abdd847ab11fe88false25645394549999999999999999997054206017776852155708905139241146222826872023-07-26T11:07:35.000Z0x465794b7a29ac98eecb00b5ec307ece01c4468e93ec5c88dd19a5449b40ba6a7
0xc36442b4a4522e871399cd717abdd847ab11fe88false256816014113852667529637201640153130875383561777519665501511854317047062023-07-26T05:34:11.000Z0xb610f27cc91f9dbad5e117bc6831e44f81883af96978e3296cf27ebf134c9fc2
0xc36442b4a4522e871399cd717abdd847ab11fe88false2579043451529214299387223649718363754140817780029637721368375603052023-07-26T21:46:35.000Z0x81c991834a7150e0dc528ce4f99b00bd8c3d4c11ce7cbf66be7d976b000edcdf
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.NonfungiblePositionManager_IncreaseLiquidity_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NonfungiblePositionManager_increaseLiquidity_function

Function calls to add liquidity to existing Uniswap V3 positions on Ethereum, identified by NFT (non-fungible token) position IDs. Tracks desired and actual token amounts deposited, liquidity minted, and slippage protection parameters for analyzing LP strategy execution.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_paramsSTRUCT<tokenId STRING, amount0Desired STRING, amount1Desired STRING, amount0Min STRING, amount1Min STRING, deadline STRING>Additional initialization parameters encoded as bytes. Hex-encoded string used for protocol-specific configuration data during contract initialization or cross-chain operations.
out_liquiditySTRINGLiquidity units added to the existing Uniswap V3 position after the increase operation completes. Null for failed transactions; otherwise a positive integer representing the delta in position liquidity.
out_amount0STRINGAmount of token0 returned or withdrawn from the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
out_amount1STRINGAmount of token1 returned or withdrawn from the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
gasvaluestatusgas_usedin_paramssignatureto_addressout_amount0out_amount1block_numberfrom_addressout_liquiditytrace_addressblock_timestamptransaction_hash
2616030true222948{“tokenId”:“43213”,“deadline”:“1626647668”,“amount0Min”:“20761375033438”,“amount1Min”:“48167931033”,“amount0Desired”:“21216619938855”,“amount1Desired”:“48849760698”}0x219f5d170xc36442b4a4522e871399cd717abdd847ab11fe882121661993885548849760698128531800x52b87a21a4aaa1e1fb2a1d6709ff8192137b0dfa35323746626230,02021-07-18T22:08:13.000Z0xff95cf99ed8bbc5ad71ffc1e3be69b3ca7810f0ae378224c9d0176bd356ee9bb
3683650true130044{“tokenId”:“52716”,“deadline”:“1626632635”,“amount0Min”:“0”,“amount1Min”:“0”,“amount0Desired”:“51828872800233872352084”,“amount1Desired”:“50000000000”}0x219f5d170xc36442b4a4522e871399cd717abdd847ab11fe881892348801371808469713950000000000128521800x50dccf8f83cce8aa9168637c2ec0114ae934f6d15289752796630500680,262021-07-18T18:23:55.000Z0xabab1391da8c6483cc0b6c15724e8a7e776dc3c61ff4680290d480133f74c6ae
228782167969107459226710true191764{“tokenId”:“55346”,“deadline”:“1626627089”,“amount0Min”:“50037544”,“amount1Min”:“161332548738468674”,“amount0Desired”:“62527999”,“amount1Desired”:“167969107459226710”}0x219f5d170xc36442b4a4522e871399cd717abdd847ab11fe8862527999167969107459226710128516520xc36442b4a4522e871399cd717abdd847ab11fe881153084381221800,0,02021-07-18T16:22:49.000Z0x535e03b301e44e4f8b3302b712efc441e839745e7d2be1f945985225641aca91
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.NonfungiblePositionManager_increaseLiquidity_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NonfungiblePositionManager_mint_function

Liquidity position creation events from Uniswap V3’s NonfungiblePositionManager contract on Ethereum, capturing mint function calls with token pair details, tick ranges, deposited amounts, and resulting NFT position IDs. Used for analyzing liquidity provision behavior and position strategy patterns across trading pairs.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_paramsSTRUCT<token0 STRING, token1 STRING, fee STRING, tickLower INT64, tickUpper INT64, amount0Desired STRING, amount1Desired STRING, amount0Min STRING, amount1Min STRING, recipient STRING, deadline STRING>Additional initialization parameters encoded as bytes. Hex-encoded string used for protocol-specific configuration data during contract initialization or cross-chain operations.
out_tokenIdSTRINGUnique identifier of the NFT position minted by this transaction, represented as a numeric string. Each position NFT has a distinct token ID that can be used to track and manage the liquidity position on-chain.
out_liquiditySTRINGLiquidity amount minted for the new position NFT, denominated in Uniswap V3’s internal liquidity units. Always non-zero for successful mints, typically ranging from millions to quadrillions depending on price range and token amounts.
out_amount0STRINGAmount of token0 returned or withdrawn from the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
out_amount1STRINGAmount of token1 returned or withdrawn from the liquidity pool operation. String-encoded integer representing the token quantity in its smallest denomination.
gasvaluestatusgas_usedin_paramssignatureto_addressout_amount0out_amount1out_tokenIdblock_numberfrom_addressout_liquiditytrace_addressblock_timestamptransaction_hash
631151232409424179114920true521685{“fee”:“10000”,“token0”:“0x431b366be6069ae62f8121a901c6160b34af7f80”,“token1”:“0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2”,“deadline”:“1677547163”,“recipient”:“0x0057f8a7610a38a15b8d6aa5a03a20901a8b31ba”,“tickLower”:153600,“tickUpper”:166000,“amount0Min”:“4972831610”,“amount1Min”:“230937003021158698”,“amount0Desired”:“5087330851”,“amount1Desired”:“232409424179114920”}0x883164560xc36442b4a4522e871399cd717abdd847ab11fe885087330851232409424179114920453270167232070xc36442b4a4522e871399cd717abdd847ab11fe8816444391907539502023-02-28T00:49:59.000Z0x1d725db439e984be5e4bf1f1d1e8ac3050534a7d52d5bcd81d2bf1e2eb29b058
61538119572040444051460484true508401{“fee”:“3000”,“token0”:“0x53c8395465a84955c95159814461466053dedede”,“token1”:“0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2”,“deadline”:“1677576383”,“recipient”:“0x09aa5d591fb7489dfb86be12041ed709d2b9d22c”,“tickLower”:-106920,“tickUpper”:-76560,“amount0Min”:“215235366713081720582527”,“amount1Min”:“19476831126826578407”,“amount0Desired”:“216217152267511166546875”,“amount1Desired”:“19572040444051460484”}0x883164560xc36442b4a4522e871399cd717abdd847ab11fe8821621715226751116654687519572040444051460484453528167256610xc36442b4a4522e871399cd717abdd847ab11fe88387211754957382973410302023-02-28T09:06:47.000Z0x77f6e3faae59708fba154478b47455a6db9a38d8c532566900574ab941607b56
52312512941005946558464true431547{“fee”:“10000”,“token0”:“0x64b78325d7495d6d4be92f234fa3f3b8d8964b8b”,“token1”:“0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2”,“deadline”:“1677578363”,“recipient”:“0x0c17144e3fb17a7f6aee82008386f53b498d37cb”,“tickLower”:-108600,“tickUpper”:-76000,“amount0Min”:“304380935020461789855889”,“amount1Min”:“0”,“amount0Desired”:“313790114403546978749587”,“amount1Desired”:“12941005946558464”}0x883164560xc36442b4a4522e871399cd717abdd847ab11fe8831379011440354697874958712941005946558464453550167258270xc36442b4a4522e871399cd717abdd847ab11fe88171467512664142213814802023-02-28T09:40:11.000Z0x853d2322bfa9142d11b9aa9ea12a1166cc03fd7f4be820aed2d257b0c37f3f17
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.NonfungiblePositionManager_mint_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

NonfungiblePositionManager_Transfer_event

Transfer events for Uniswap V3 liquidity position NFTs (Non-Fungible Position Manager) on Ethereum, tracking mints, burns, and ownership changes of tokenized LP positions by tokenId.
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_fromSTRINGAddress originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_tokenIdSTRINGUnique identifier for a non-fungible token within its contract. Numeric string representation of the token’s ID.
in_toaddressin_fromremovedlog_indexin_tokenIdblock_numberblock_timestamptransaction_hash
0x0000e0ca771e21bd00057f54a68c30d4000000000xc36442b4a4522e871399cd717abdd847ab11fe880x0000000000000000000000000000000000000000false53199436143170342022-03-03T23:38:27.000Z0x4ec732a9275bb206b6549657ed63df0af74fe1ae7cccd31ab45b655cb08abb74
0x00a79a30836a3e30e4aac89644e548916ac829660xc36442b4a4522e871399cd717abdd847ab11fe880x0000000000000000000000000000000000000000false400199387143162362022-03-03T20:41:28.000Z0x9b136941a689c1c71e2b9a29bef92a71087aabdf0b47985d72abe6c1a6cad9c1
0x045d3d3bf9ef8ae7bae0e1ee2765349636d900570xc36442b4a4522e871399cd717abdd847ab11fe880x0000000000000000000000000000000000000000false475199283143142132022-03-03T13:18:38.000Z0x419271c346b2772fc29a947ff3c4010bb9c1e3d2512130156e0c155b388e1359
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.NonfungiblePositionManager_Transfer_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
0x00f59b15dc1fe2e16cde0678d2164fd5ff10e424false0xc36442b4a4522e871399cd717abdd847ab11fe881187921916051963501128414439028214613867519776196012417009-116000-1158002021-05-12T02:51:53.000Z0x5269c66a70545e30035f3be8b14620ba2a09927fe3a085830a0a795720cc99d6
0x04916039b1f59d9745bf6e0a21f191d1e0a84287false0xc36442b4a4522e871399cd717abdd847ab11fe8831598601589949121123311822933165476193887048807183066621241891223040299402021-05-12T09:48:48.000Z0x63ba20e219737ea66125069a1370081f9b1ec1a6c4ff451e6ce41509d0e820bf
0x04916039b1f59d9745bf6e0a21f191d1e0a84287false0xc36442b4a4522e871399cd717abdd847ab11fe883463390838408090125365026763591545056761921241782025560294602021-05-12T05:49:49.000Z0x15568bc1b8d37f5f4cbd663e0dee671ef8457828b9db0c489a236ac76c3db3dd
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.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
0x02daa5fdd4b474c13a8d6d141471b87fbd2452cdfalse0x777839b0667f293202e215576021b9d0a80dea9642700146947980x777839b0667f293202e215576021b9d0a80dea9656400633602022-05-01T23:09:41.000Z0xa7d09f4007a019e70c7902dcf982a3815a30f6e7f17f17e9d829d56e149e4eaa
0x02daa5fdd4b474c13a8d6d141471b87fbd2452cdfalse0x777839b0667f293202e215576021b9d0a80dea964260538105365669249999997320146947980x10dc1d2f35992b28c5160c2f9fc9582735298d7856400633602022-05-01T23:09:41.000Z0xa7d09f4007a019e70c7902dcf982a3815a30f6e7f17f17e9d829d56e149e4eaa
0x07a6e955ba4345bae83ac2a6faa771fddd8a2011false0xc36442b4a4522e871399cd717abdd847ab11fe88406480839827573245155025556938328146913300x9178331a5337a5e587b5bc9e28b6dd4adca955ca-281760-2679002022-05-01T10:02:38.000Z0x01f99ffd6b80ca299e20a8cea56d8fa1e10ac5c6e7322e79a0db945d18d5bfa4
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.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
0x403b1b747b1efb309070436c9ac99bf476f299eafalse0x5e74c9f42eed283bff3744fbd1889d398d40867d97108588541010000000000000241064330xf38521f130fccf29db1961597bc5d2b60f995f852025-12-27T20:44:23.000Z0xa80920bea2034bf6c5eab43671f3dbc87f621dafa317f5de9803b914fa2aaffe
0xc7bbec68d12a0d1830360f8ec58fa599ba1b0e9bfalse0x5e74c9f42eed283bff3744fbd1889d398d40867d26275069306293947701222043379241119940xf38521f130fccf29db1961597bc5d2b60f995f852025-12-28T15:21:47.000Z0xa8280a7742d65a5eca79fe3614801dafc64867800d4dbe31a16ae447d9a1b137
0x1d42064fc4beb5f8aaf85f4617ae8b3b5b8bd801false0x5e74c9f42eed283bff3744fbd1889d398d40867d1751000000000000000010000000000000241149290xf38521f130fccf29db1961597bc5d2b60f995f852025-12-29T01:10:47.000Z0xf63c88c7f22f3294f7cabbe44c01eb0ca00d9b878288796994cc1496cb794a50
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.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.
addressremovedin_paid0in_paid1in_senderlog_indexin_amount0in_amount1block_numberin_recipientblock_timestamptransaction_hash
0x3416cf6c708da44db2624d63ea0aaef7113527c6false01278030x1ed9c8bd3dccb85f704a5287444b552f9d5e1a2630601278029383179355240x1ed9c8bd3dccb85f704a5287444b552f9d5e1a262023-08-17T15:46:59.000Z0x57899f7734a3de91f131b9d26e86071b0316d8c3d0af009a38116da5bd371680
0x5777d92f208679db4b9778590fa3cab3ac9e2168false01481590xc70e2915f019e27baa493972e4627dbc0ed7a7946501481586884179374420xc70e2915f019e27baa493972e4627dbc0ed7a7942023-08-17T22:13:59.000Z0x3353d554ccf215e3f74cbb2586082df97e0c62b358157b43be70f25b691c5682
0x5777d92f208679db4b9778590fa3cab3ac9e2168false0118580xc70e2915f019e27baa493972e4627dbc0ed7a794860118570148179360820xc70e2915f019e27baa493972e4627dbc0ed7a7942023-08-17T17:39:47.000Z0x0dae2a09fe29202bb256d6f51f9dfcccac3df4ab56c3531ef5b9bbe847336af5
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.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
0x0254a309f5140d457c0699e2cd0457a692a69cc4false0xc36442b4a4522e871399cd717abdd847ab11fe882194209371521089470xc36442b4a4522e871399cd717abdd847ab11fe8856716801615673480135823261434001436002021-11-09T13:08:47.000Z0x61cf55618186126282796b0e772a425b08912529cdb39508c0867317400ddd18
0x04916039b1f59d9745bf6e0a21f191d1e0a84287false0xc36442b4a4522e871399cd717abdd847ab11fe88238356752259207177063350xc36442b4a4522e871399cd717abdd847ab11fe883432629282543477653281901357940219980200402021-11-09T01:56:00.000Z0x12f03dc65d517063af89b1c75d3d2d62d7011f533af765504bb27a6c02b68e6d
0x04c380e343b0dc42f4c51b7770d71a23621c7dc8false0xc36442b4a4522e871399cd717abdd847ab11fe8818660850691679690xc36442b4a4522e871399cd717abdd847ab11fe88116408500425899140027268013582042-256800-2394002021-11-09T12:03:54.000Z0x462da2953ad1461c8e7cec5b0255d4910fa6786f5f63adc148b7ab9735c300c9
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.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
0x026babd2ae9379525030fc2574e39bc156c10583false627241064042025-12-27T20:38:35.000Z0x000bac7e577d00ea632f59a9e1ef5bf718c64bac43855db2ba9c7bc3feef075e4040
0xf98cf0d979cfbb780774f318e3da4f7317af50d7false605241064042025-12-27T20:38:35.000Z0x000bac7e577d00ea632f59a9e1ef5bf718c64bac43855db2ba9c7bc3feef075e4040
0x19ae05c1983d970129a61c5dd7d77cad33ace5cffalse633241064042025-12-27T20:38:35.000Z0x000bac7e577d00ea632f59a9e1ef5bf718c64bac43855db2ba9c7bc3feef075e4040
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.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
0xbc32d18c5c1138094dabeb3b4d5b720db75c823c56544false0x0000000000007f150bd6f54c40a34d7c3d5e9f563298045354-2291087720158429642624423193560x0000000000007f150bd6f54c40a34d7c3d5e9f562022-10-28T00:23:23.000Z13386533947902678667632516024490x99dd1c8f191c61fca610040f2c69522736e86e3831d4004f917944a20d87b0c9
0x07f3d316630719f4fc69c152f397c150f0831071-81false0x0000000000007f150bd6f54c40a34d7c3d5e9f565541030400005-10223835061584507213203910483840x0000000000007f150bd6f54c40a34d7c3d5e9f562022-10-28T07:30:11.000Z789084336046230077328421205350x11fb89597fc083130a613289e4ab5111d880faa61cd2e1bc3c14749f194a282e
0x2f60777945fc351abf9e9e733bc5a52809269dd7285904false0x0000000000007f150bd6f54c40a34d7c3d5e9f561075339-2007281088686448241584297138168233446550x0000000000007f150bd6f54c40a34d7c3d5e9f562022-10-28T00:24:47.000Z1279078101043694551973677636494574460x22b7d579d7b9cc6a57c5da4ae7812e6395f3938d8d7c96d950d59fdda89434e6
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.Pool_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

UniversalRouter_execute_function

Uniswap V3 UniversalRouter execute function calls on Ethereum containing command sequences and input parameters for multi-step swap operations. Used for analyzing complex routing patterns, MEV activity, and failed versus successful transaction execution across token pairs.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_commandsSTRINGEncoded sequence of operation commands to be executed by the Uniswap Universal Router contract. Hex-encoded byte string where each byte represents a specific router command type.
in_inputsARRAY<STRING>Array of ABI-encoded parameters corresponding to each command in the Universal Router execution sequence. Hex-encoded byte strings containing operation-specific data such as token amounts, addresses, and swap paths.
gasvaluestatusgas_usedin_inputssignatureto_addressin_commandsblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
3919840false152309[]0x24856bc30xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b183082120xc71573fff7dd1520d0e2b8e0b67f3c599212fe9a2023-10-08T20:42:23.000Z0x169be9a2b508f0bfb30039b367dace4ccfdd53bf6dbcd2d8df6eaf017f1b380d
2136410false141893[]0x24856bc30xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b183082150xc71573fff7dd1520d0e2b8e0b67f3c599212fe9a2023-10-08T20:42:59.000Z0xb32a5b59a05f67111d548197e2499360acc805ba97f3a20399677547e098901c
3919840false12390[]0x24856bc30xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b183050510xc71573fff7dd1520d0e2b8e0b67f3c599212fe9a2023-10-08T10:04:35.000Z0xc77d60c893fc94a81c86fa6b92bd89c3b940b4f055636c27b3c6efcf963d803f
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.UniversalRouter_execute_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

UniversalRouter_execute2_function

Transaction executions through Uniswap V3’s UniversalRouter contract on Ethereum, capturing swap commands, input parameters, deadlines, and gas metrics for analyzing routing patterns and multi-step trade executions.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_commandsSTRINGEncoded sequence of operation commands to be executed by the Uniswap Universal Router contract. Hex-encoded byte string where each byte represents a specific router command type.
in_inputsARRAY<STRING>Array of ABI-encoded parameters corresponding to each command in the Universal Router execution sequence. Hex-encoded byte strings containing operation-specific data such as token amounts, addresses, and swap paths.
in_deadlineSTRINGTimestamp after which the transaction or operation becomes invalid and will revert. Unix timestamp in seconds.
gasvaluestatusgas_usedin_inputssignatureto_addressin_commandsin_deadlineblock_numberfrom_addresstrace_addressblock_timestamptransaction_hash
1818760true145274[“0x00000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000007de2900000000000000000000000000000000000000000000000000012e96b9f86ce50800000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002ba0b86991c6218b36c1d19d4a2e9eb0ce3606eb480001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000”,“0x0000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000012e96b9f86ce508”]0x3593564c0xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b0x000c1675989659165946880xcff79041bee307e1bb8895b04f3cfe228ef0e4172023-02-10T00:11:23.000Z0x6335d574b5b079cadba8940e737b831a72e720d476fe30e93ccc9c2a19550c8b
6428940true528893[“0x000000000000000000000000e23311294467654e0cab14cd32a169a41be5ca8e000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000640d18490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b0000000000000000000000000000000000000000000000000000000063e5925100000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000417b894816a832982899a2cb63c854df03b3c9efdeb155a4a0c2029b583b4ca6fb42a0e7e3f16028ae696d6b1f6c82cd75dd826b4902d24f23a4284ae845bbd5cb1b00000000000000000000000000000000000000000000000000000000000000”,“0x000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000096f0da489ac378b000000000000000000000000000000000000000000000000000004cd3ce04b6aeebc00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000002000000000000000000000000e23311294467654e0cab14cd32a169a41be5ca8e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2”,“0x000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000004cd3ce04b6aeebc”]0x3593564c0xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b0x0a080c1675989659165946880xb8a05c801275ef45446e02f0ddd992f698b5c5bb2023-02-10T00:11:23.000Z0x8653de955d5ec893cf680a1c86e91be16b8527116240f636a3979a6be65164bb
184692201905663000000000true147109[“0x000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000002cd502179413600”,“0x000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000002cd50217941360000000000000000000000000000000000000000000000012b87f58353570b7e8d00000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20027106b0b3a982b4634ac68dd83a4dbf02311ce324181000000000000000000000000000000000000000000”]0x3593564c0xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b0x0b001675989059165946880x1631c0c18d61a7df54ccdc0229b259f16935c48a2023-02-10T00:11:23.000Z0xde846e96d79183ba4f120b23032a14a22fa0334abce1e3cc4284cf5ad044bb54
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.UniversalRouter_execute2_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

UniversalRouter_uniswapV3SwapCallback_function

Callback function executions from Uniswap V3’s UniversalRouter contract on Ethereum, recording token amount deltas (amount0Delta and amount1Delta) when swaps settle between liquidity pools and the router. Used for analyzing swap settlement mechanics and token flow patterns in multi-hop trades.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueNUMERICAmount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_amount0DeltaSTRINGChange in amount for the first token in a Uniswap V3 liquidity pool swap. Positive values indicate tokens owed to the pool, negative values indicate tokens owed to the recipient.
in_amount1DeltaSTRINGChange in amount for the second token in a Uniswap V3 liquidity pool swap. Positive values indicate tokens owed to the pool, negative values indicate tokens owed to the recipient.
in_dataSTRINGEncoded input data for the contract function call. Hex-encoded byte string representing function parameters and additional call data.
gasvaluestatusin_datagas_usedsignatureto_addressblock_numberfrom_addresstrace_addressblock_timestampin_amount0Deltain_amount1Deltatransaction_hash
14490false0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b000000000000000000000000000000000000000000000000000000000000002ba0b86991c6218b36c1d19d4a2e9eb0ce3606eb480001f4c02aaa39b223fe8d0a0e5c4f27ead9083c756cc20000000000000000000000000000000000000000000xfa461e330xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b169422120x88e6a0c2ddd26feeb64f039a2c41296fcb3f56402,22023-03-30T19:43:47.000Z512408054-2875725577691957730x11d365aa5c01cbe33886f5de6700e3b9c19d38c874ca4b80eccd4d047279312f
20930false0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000bb82b591e99afe9f32eaa6214f7b7629768c40eeb390000000000000000000000000000000000000000000xfa461e330xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b169404840x9e0905249ceefffb9605e034b534544684a58be61,22023-03-30T13:53:59.000Z-22596817619395111224297740483417110x62e10077582424f115f19ff810539539ee622aa6c95901247968e2bbeb845ba0
46260false0x0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b000000000000000000000000000000000000000000000000000000000000002bc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000bb8f21661d0d1d76d3ecb8e1b9f1c923dbfffae40970000000000000000000000000000000000000000000xfa461e330xef1c6e67703c7bd7107eed8303fbe6ec2554bf6b169421260x5b7e3e37a1aa6369386e5939053779abd35975087,22023-03-30T19:26:35.000Z1130084544722956284-63542127003300653716350x91ce0afabb81c8aa555454c02a22d831b2ba6a19eae5e604846fe343118fa24e
Query with partition filter
SELECT *
FROM `tt-contracts.uniswap_v3_ethereum.UniversalRouter_uniswapV3SwapCallback_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100