Skip to main content

Tables

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
0x01506ac9b32feb18b884cf544806a29328ae1f6d0x0010cc5ba04cf55a3e816e58f268b65c2432cbb6false0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff24525374671300000000000000000000164533579575603952422022-02-27T03:34:21.000Z0xf8e1cebbcc0c353aefbbf8999a20f074b272b83f5dd100c9495439fe3d4823d1
0x01506ac9b32feb18b884cf544806a29328ae1f6d0x0010cc5ba04cf55a3e816e58f268b65c2432cbb6false0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff495253744396565813436984119287300037727706824533502451242022-02-27T03:21:39.000Z0x4f49694afd372cb127846d7d53b6abfb94d17ab18c9d09dce263ef1cd649dc83
0x01506ac9b32feb18b884cf544806a29328ae1f6d0x0010cc5ba04cf55a3e816e58f268b65c2432cbb6false0xa5e0829caced8ffdd4de3c43696c57f7d7a678ff566253745953747797297137489180160020670229054735897196152022-02-27T03:30:52.000Z0x970636c7e5075462d6835519546ed876f238e06815e10a87a7a577ac84f2262d
Query with partition filter
SELECT *
FROM `tt-contracts.quickswap_v1_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
0x76f53a8710bb7d188d2424d81e2c22e32cbc5f8afalse610595575666651228441493629796353921001555285336397567539586982024-02-26T00:00:03.000Z0x37653f5b5aa3741cb000772832f146f66f5892e5d16cfd05a21eeb4a90ea709f
0xbb19343a40d70010abe78014669223cf3c39df9bfalse550582211451574183344825093251172303886456122205280773539586982024-02-26T00:00:03.000Z0x4e551c4f9ad92a98a5e251ed7525ec03dcdcf82c88fc098a09689755e2b2f118
0x76f53a8710bb7d188d2424d81e2c22e32cbc5f8afalse622595626304616926334875702796286421001555285336397567539586982024-02-26T00:00:03.000Z0x3d6f90b6ddb8d3283d2176c9a5a64bf52c0eba70b74606e07891e3341fd18d83
Query with partition filter
SELECT *
FROM `tt-contracts.quickswap_v1_polygon.Pair_Sync_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

PairFactory_PairCreated_event

Event logs emitted when a new liquidity pool pair is created by a DEX (Decentralized Exchange) factory contract. Records the deployed pair contract address, constituent token addresses, and creation metadata for tracking protocol liquidity expansion.
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
0x5757371414417b8c6caad45baef941abc7d3ab320xd3f7f809b967bf0f9cdc59fbacf132426f589142false339110x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700xaceaa7c298f33077cb5d4b50a98084e3e2b8d773115283552272022-05-15T16:59:44.000Z0xfdb5be14162b57320191fd12679210f3bc176ecd47f97eda1a7074027be629d5
0x5757371414417b8c6caad45baef941abc7d3ab320x34e4229c092507b5dca179d31d65a095df8b7b3afalse339170x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700x6d81aae49a445a7efae91f03aa213f57c0b9a7b3323283605002022-05-15T20:03:07.000Z0x2cdc5d5fd7619b530779c289c96c9a57d17c7f4718ebadaba04831c2eccf68d7
0x5757371414417b8c6caad45baef941abc7d3ab320x2e9f08fde5286f9aed492bc52c76e206654bef5bfalse338990x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700xad630f27318f458564e5077e8315f186f433f1f6255283372312022-05-15T06:07:23.000Z0x4d662f3631255c901d656f9e60aff0aee77d7295392192650bf770833c068afe
Query with partition filter
SELECT *
FROM `tt-contracts.quickswap_v1_polygon.PairFactory_PairCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100