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
0xc0aee478e3658e2610c5f7a4a2e1777ce9e4f2ac0xe5dab4f3a526b6199fd7002765ed9aca41a3c47cfalse32510x396bd4f97ed0eee711ff237aed3ebf9a893e7fa50xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2249157103892022-10-09T11:58:23.000Z0x184e8a90b830bedd76e8a2c9ac83ad4aee98a8f2f08ac44fcc38ee03b912cde6
0xc0aee478e3658e2610c5f7a4a2e1777ce9e4f2ac0x0646583be34b133ce5d247f1d94e7effe32b58d0false32530x0fd034abd916842c17c89bae7b1ec696e1c104a90xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2353157133912022-10-09T22:02:11.000Z0xc6429f920351f390b392a64b76d847167a46ccd7b30eb1447ed3da0b8f77e373
0xc0aee478e3658e2610c5f7a4a2e1777ce9e4f2ac0x1b2273311ab410d11168b8df242b8b79d8bfcdb5false32520xca83bb94f7ec0e72e8b496ac236146a74a567c2f0xe0b9bcd54bf8a730ea5d3f1ffce0885e911a502c340157106412022-10-09T12:48:59.000Z0x37ac1f9c6dbc68a35217edbab9e0d2c657fe2c9c73e725373a386a1a361fa191
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v1_ethereum.Factory_PairCreated_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
0x001b6450083e531a5a7bf310bd2c1af4247e23d4false813547718096276384158738224620296900222598786786114804312020-12-19T00:27:20.000Z0xb439e916622bf756c7f48516d8272f6b913d5c416a9e53d2b1049270a729f849
0x001b6450083e531a5a7bf310bd2c1af4247e23d4false353523313101054861652638424652427695617434446276114807832020-12-19T01:43:16.000Z0x3253d372d13d27d23fc6a9b943ccf53540b50b4d42170d7da61a425005074006
0x001b6450083e531a5a7bf310bd2c1af4247e23d4false23700856075113667292809714436084317160775209504114854932020-12-19T19:06:16.000Z0xe4be7809d031d3aa78fab95239d636fe521947d2ce91de3aa07e7267ff416696
Query with partition filter
SELECT *
FROM `tt-contracts.sushiswap_v1_ethereum.Pair_Sync_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100