Skip to main content

Tables

Factory_PairCreated_event

Decentralized exchange (DEX) liquidity pool creation events emitted by Automated Market Maker (AMM) factory contracts. Records new trading pair deployments with token addresses, deployed pair contract address, and creation sequence number for tracking pool instantiation across DEX 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_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_pairSTRINGContract address of the liquidity pool pair created for trading between two tokens. Hex-encoded, 0x-prefixed, 42-character string.
in_anon3STRINGSequential counter tracking the total number of pairs created by the factory contract.
addressin_pairremovedin_anon3in_token0in_token1log_indexblock_numberblock_timestamptransaction_hash
0x5757371414417b8c6caad45baef941abc7d3ab320x5e088b7e6e304829b9b0a7cb7ba8297e9de09b25false5630x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700x2c8e58aa0a2be89bd022bda28079f3f67121623c4126027522021-03-29T07:13:48.000Z0x1e8874d189cd77d7433c1f0e08f7be626b2ab38cc022da4cbb3f69af7bdb5f18
0x5757371414417b8c6caad45baef941abc7d3ab320xd80d9b5f4c0ab268da819ca0aa5509c37a984eaffalse5680x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700x72d6066f486bd0052eefb9114b66ae40e0a6031a1126309282021-03-29T23:50:43.000Z0xdc80671e48040e29f789729db219d9dc2f84418639a100a95d510f297b524c27
0x5757371414417b8c6caad45baef941abc7d3ab320x5df6b50532ba076151b282c2b344ab2770977268false5660x7c28f627ea3aec8b882b51eb1935f66e5b8757140x7fbc10850cae055b27039af31bd258430e714c620126233342021-03-29T19:18:06.000Z0x7dabdda035140dbdb44e1c15dac1042bafa6cd073f95655a516b392ea605bb48
Query with partition filter
SELECT *
FROM `tt-contracts.quickswap_v2_polygon.Factory_PairCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Burn_event

Liquidity removal events from DEX (Decentralized Exchange) trading pairs recording amounts of both tokens withdrawn when liquidity providers burn LP tokens. Used for tracking liquidity provision activity and calculating total value locked (TVL) changes in automated market maker (AMM) pools.
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_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_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toaddressremovedin_senderlog_indexin_amount0in_amount1block_numberblock_timestamptransaction_hash
0x0ba8ea826b78de6288d6ffc8cf9f7a3d1931d1a10x1c0ccd758c1da634d17ab8c590ebfb9409ce2c56false0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff2261638107012416709618681622703952141148929541371112472022-12-21T20:24:17.000Z0xf790adcfc2cb2b3d37642072f6bdb35f1c5c31905d4482ef5c0e4abe11e59e62
0x0d15764e7f13e780ca0ae83a15a8d819db05ef2b0xc765eca0ad3fd27779d36d18e32552bd7e26fd7bfalse0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff125183972392751489837382559325395308053160770371131992022-12-21T21:35:37.000Z0xb8a9bb776ae6b97e78643f6f8d735f75ed6e5a886d1688be8b7268cf52ae1f72
0x0d15764e7f13e780ca0ae83a15a8d819db05ef2b0xbfad162775ebfb9988db3f24ef28ca6bc2fb92f0false0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff73253802704537391657141515003831913549371658371131742022-12-21T21:34:47.000Z0xe1631eee2ba7a3881cbf06a5443eb5566710ab833fc22f471ef302ab6da1f016
Query with partition filter
SELECT *
FROM `tt-contracts.quickswap_v2_polygon.Pair_Burn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Mint_event

Liquidity provision events emitted when users add tokens to a DEX pair contract. Records sender address and token amounts deposited for liquidity pool 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_senderSTRINGAddress that initiated the transaction 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_numberblock_timestamptransaction_hash
0x6e7a5fafcec6bb1e78bae2a1f0b612012bf14827false0x5ff960b7e6d6a7c7cb9e47a455f01aface69bf45219280591987506577581170697649249812024-11-30T19:34:45.000Z0x860e1d750407077009f17fa4af47be23aadeb4f9eb699d535b53778020884e8b
0xf04adbf75cdfc5ed26eea4bbbb991db002036bddfalse0x5ff960b7e6d6a7c7cb9e47a455f01aface69bf451125419915417544833090173039649238502024-11-30T18:54:41.000Z0x3da6686270f185f901313cd604d7e79b9e234f02781673691bb383be11b514a3
0x0513e39ac9eb04a3845b02726162f3877c77d87dfalse0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff3157772513722453154286501131261464308726474416665649226462024-11-30T18:12:00.000Z0x27d05081f72672729737c477d908806f749536a55db5465b012ef6b1e4db4505
Query with partition filter
SELECT *
FROM `tt-contracts.quickswap_v2_polygon.Pair_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Swap_event

Token swap events from decentralized exchange (DEX) liquidity pairs recording input and output amounts for both tokens. Primary source for tracking DEX trading activity and price discovery.
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_amount0InSTRINGAmount of token0 transferred into the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.
in_amount1InSTRINGAmount of token1 transferred into the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.
in_amount0OutSTRINGAmount of token0 transferred out of the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.
in_amount1OutSTRINGAmount of token1 transferred out of the liquidity pool during a swap operation. Stored as decimal string representing the smallest unit of the token.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toaddressremovedin_senderlog_indexblock_numberin_amount0Inin_amount1Inin_amount0Outin_amount1Outblock_timestamptransaction_hash
0x00000000009726632680fb29d3f7a9734e3010e20x59153f27eefe07e5ece4f9304ebba1da6f53ca88false0x111111125421ca6dc452d289314280a0f8842a651015611744009885988691746871026202024-04-22T08:49:46.000Z0xbe277407e943ffd68c9d1925c3d313806b13aa3fccb20c6e5bcdd15848c5cd25
0x00000000063e0e1e06a0fe61e16be8bdec1bea310x6d9e8dbb2779853db00418d4dcf96f3987cfc9d2false0x1111111254eeb25477b68fb85ed929f73a96058228385613388201241442167925106054690211102024-04-22T18:45:25.000Z0x6de424adad835e81908faf0ce16fb58eb922404539e5e6bd15655020eab7a869
0x00000000063e0e1e06a0fe61e16be8bdec1bea310x604229c960e5cacf2aaeac8be68ac07ba9df81c3false0x1111111254eeb25477b68fb85ed929f73a96058232456109382084930861159948199281842371502024-04-22T04:02:04.000Z0x3b06cf7945b54c5bc21d639adc9a14919b91596a2cff4335b37b6a4eb4c30962
Query with partition filter
SELECT *
FROM `tt-contracts.quickswap_v2_polygon.Pair_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Sync_event

Liquidity pair reserve synchronization events emitted after each swap, mint, or burn operation. Contains updated reserve balances for both tokens in AMM (Automated Market Maker) pools, enabling real-time price calculation 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_reserve0STRINGReserve amount of the first token in a liquidity pool after a state-changing operation. Stored as decimal string representing the smallest unit of the token.
in_reserve1STRINGReserve amount of the second token in a liquidity pool after a state-changing operation. Stored as decimal string representing the smallest unit of the token.
addressremovedlog_indexin_reserve0in_reserve1block_numberblock_timestamptransaction_hash
0x4b4c614b9219397c02296f6f4e2351259840b3c7false55439847595015263999085793808021102715233464068394932020-11-10T00:00:57.000Z0xc848b17a0d5198d976561c0590fd84cdc7b66416b5e3dbfe5fda8848d37eac10
0x1f1e4c845183ef6d50e9609f16f6f9cae43bc9cbfalse422278378970567261881439868327534968399732020-11-10T00:17:25.000Z0xf8e3504c272f577217a093936667da4976e4dd27cfba17a49ceb516a1dfcf379
0x1f1e4c845183ef6d50e9609f16f6f9cae43bc9cbfalse521841702020556143020900721792844368399982020-11-10T00:18:15.000Z0xd4a248774a5b561897619ca97ccaad0590d58641695c02586553d78f3f30938b
Query with partition filter
SELECT *
FROM `tt-contracts.quickswap_v2_polygon.Pair_Sync_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Pair_Transfer_event

ERC20 Transfer events emitted by liquidity pair contracts in automated market maker (AMM) decentralized exchanges (DEXs). Records minting, burning, and transfer of LP (liquidity provider) tokens representing ownership shares in 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.
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_valueSTRINGAmount of tokens transferred, minted, or burned in the operation. Numeric string representation preserving precision for large integer values.
in_toaddressin_fromremovedin_valuelog_indexblock_numberblock_timestamptransaction_hash
0xca1fb28a5e6a3cd987c290cb155653f27ab9b6360x000767b8aa5b12d239ae1b146a578631b2092e8b0x0000000000000000000000000000000000000000false99999999999999000696308567632022-07-18T10:07:27.000Z0x2e8a74a69901a2387778d75902517b1cabf0c52d090380b4a9d18770ce6bda21
0x00000000000000000000000000000000000000000x000767b8aa5b12d239ae1b146a578631b2092e8b0x0000000000000000000000000000000000000000false1000695308567632022-07-18T10:07:27.000Z0x2e8a74a69901a2387778d75902517b1cabf0c52d090380b4a9d18770ce6bda21
0xca1fb28a5e6a3cd987c290cb155653f27ab9b6360x000767b8aa5b12d239ae1b146a578631b2092e8b0x0000000000000000000000000000000000000000false100000000000000000326308568542022-07-18T10:10:53.000Z0xeca921175acb2e4b946280974100b12dd0947bd4a682c99aa7f6ea1a2e031c8f
Query with partition filter
SELECT *
FROM `tt-contracts.quickswap_v2_polygon.Pair_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100