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
0xac2ee06a14c52570ef3b9812ed240bce359772e70x9ae38c605cc144e0b85e905d3187b820f8d81b7cfalse1780x2ccd5e4e0aa82e232af6d617df5ef17e5f94e1350x82af49447d8a07e3bd95bd0d56f35241523fbab116844389562023-04-26T09:15:55.000Z0xa956afc218f39a0d5e8e349f7d33b9fb35edbe330421db4e6ff0437c591050b1
0xac2ee06a14c52570ef3b9812ed240bce359772e70x500abeef758bf3e9051c2d678f3b0de5696577dffalse990x1b53c0e3154987b5b15c9152ef17aba01db418d30x82af49447d8a07e3bd95bd0d56f35241523fbab10654874862023-02-28T17:49:00.000Z0x519574418495378f7ed3def89bf1b137f6c7eeb9401cc255b9afd82645592d3c
0xac2ee06a14c52570ef3b9812ed240bce359772e70x190a9cc1cf4402d7bf0b98cf478d9fc4d2096f60false1000x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f0x59a252e4dcd8503005230694a6958b437657e70d0655565742023-02-28T23:06:35.000Z0xfce6afecf72dd7060fa6564e43689def6f6d6d37ddfcafc40654170ef73b4b73
Query with partition filter
SELECT *
FROM `tt-contracts.zyberswap_v2_arbitrum.Factory_PairCreated_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
0x00000000049c95d6b6002a72c222809bfbfe2ed80x3ec0eddcd1e25025077327886a78133589082fb2false0x00000000049c95d6b6002a72c222809bfbfe2ed82115458402533118311532831895857200424788442023-11-27T11:58:29.000Z0xc47567d3577935471452cc568bef11d13194c69550b261b1b9a89a2518c92d5c
0x1f5a3c42f26b72c917b3625c7a964ca33600fa250x3ec0eddcd1e25025077327886a78133589082fb2false0x1f5a3c42f26b72c917b3625c7a964ca33600fa251815456955714467046993356191448100189161922023-11-27T10:57:05.000Z0xcb0d80f6992b5f4516efb37a5e41659cd2068dddecb7a0232826e49ac0e07c56
0x1f5a3c42f26b72c917b3625c7a964ca33600fa250x3ec0eddcd1e25025077327886a78133589082fb2false0x1f5a3c42f26b72c917b3625c7a964ca33600fa2551545565258890539912890536752500116770992023-11-27T10:01:13.000Z0x3ddfdc618460d9e84f32a9fdb95c2740e93b8ee391f2806dcb69a2b7d92b1f35
Query with partition filter
SELECT *
FROM `tt-contracts.zyberswap_v2_arbitrum.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
0x7db09b248f026f1a77d58b56ab92943666672968false32770797709836931003286154105734615212371708787742024-01-16T01:54:26.000Z0xe8d612b854e21ffd1b3a2e6af19633948eb6a7fde46c7680da09c9e0362fad23
0x7db09b248f026f1a77d58b56ab92943666672968false32742588572965245313320396880264255491471710915242024-01-16T17:32:58.000Z0x00b903f27b33732db4ef74b09c63878512ede971909a744d9565a96bacdb4864
0x7db09b248f026f1a77d58b56ab92943666672968false32777990329099043463277762271307414230691709483112024-01-16T07:10:55.000Z0x9cd60f0641fb4cf63d9cc9cb67f335d838648ae295a63741cb4ab3a04f0c43b7
Query with partition filter
SELECT *
FROM `tt-contracts.zyberswap_v2_arbitrum.Pair_Sync_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SwapDeployer_NewSwapPool_event

Liquidity pool deployment events from ZyberSwap V2 on Arbitrum, capturing the creation of new swap pools with their constituent token addresses and deployer information. Used for tracking protocol expansion and identifying new trading pair availability.
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_deployerSTRINGAddress of the account that initiated the deployment or creation action. Hex-encoded, 0x-prefixed, 42-character string.
in_swapAddressSTRINGAddress of the newly deployed swap pool contract created by the deployer. This is the main contract address users interact with for swapping tokens in the pool.
in_pooledTokensARRAY<STRING>Array of token contract addresses included in the newly deployed liquidity pool. Each address is hex-encoded and 0x-prefixed, representing the tokens that can be swapped within this pool.
addressremovedlog_indexin_deployerblock_numberin_swapAddressblock_timestampin_pooledTokenstransaction_hash
0xc25e230afb1b67162350cd405add199a002c6abdfalse30x17f1395b3705a9c925af7a999f062e41fa72f6fb599658880x969f7699fbb9c79d8b61315630cdeed95977cfb82023-02-11T11:19:57.000Z[“0xff970a61a04b1ca14834a43f5de4533ebddb5cc8”,“0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9”,“0xda10009cbd5d07dd0cecc66161fc93d7c9000da1”]0x9af02232d13c209c4c8492e07842b0ab6db02d0e8461de8876ca39471ee33a8e
Query with partition filter
SELECT *
FROM `tt-contracts.zyberswap_v2_arbitrum.SwapDeployer_NewSwapPool_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

SwapFlashLoan_TokenSwap_event

Token swap events from Saddle Finance and Zyberswap liquidity pools recording buyer address, sold and bought token identifiers, and token quantities exchanged. Used for tracking decentralized exchange (DEX) trading activity and price impact analysis across 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_buyerSTRINGAddress of the account purchasing tokens or assets in the transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_tokensSoldSTRINGQuantity of tokens sold in the swap transaction. Numeric string value representing the raw token amount without decimal adjustment.
in_tokensBoughtSTRINGQuantity of tokens acquired in the swap transaction. Numeric string value representing the raw token amount without decimal adjustment.
in_soldIdSTRINGIndex identifier for the token being sold in the swap. Numeric string value representing the position of the sold token in the swap pool.
in_boughtIdSTRINGIndex identifier for the token being acquired in the swap. Numeric string value representing the position of the purchased token in the swap pool.
addressremovedin_buyerin_soldIdlog_indexin_boughtIdblock_numberin_tokensSoldblock_timestampin_tokensBoughttransaction_hash
0x969f7699fbb9c79d8b61315630cdeed95977cfb8false0x9b99e9c620b2e2f09e0b9fced8f679eecf2653fe126225401111321757282024-09-16T05:20:25.000Z21765183156005527360x75b170bba8319fc299a8a5ef4f8a040df0d34161008bc8cb1360bd3b8718ab47
0x969f7699fbb9c79d8b61315630cdeed95977cfb8false0x9b99e9c620b2e2f09e0b9fced8f679eecf2653fe162254023949264290432024-09-16T06:14:32.000Z264328527975493268120xb63781cab2a529f71fdb1ecdcf60aab1117dec349af8eac368e36ff08ab088dc
0x969f7699fbb9c79d8b61315630cdeed95977cfb8false0xc3f3a07ae7d2a125ef81a5950c4d0dd54c7402512220283412845407453505293472043972024-12-10T19:11:39.000Z407109910x48b7bd1fae32f22fc5a428da608ce437d2dcf905b7ee09477d056003ce13d6ff
Query with partition filter
SELECT *
FROM `tt-contracts.zyberswap_v2_arbitrum.SwapFlashLoan_TokenSwap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100