Skip to main content

Tables

ApeFactory_PairCreated_event

Decentralized exchange (DEX) factory events emitted when new liquidity pool pairs are deployed. Records token pair addresses, deployed pool contract address, and sequential pair counter for tracking pool creation 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_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
0xcf083be4164828f00cae704ec15a36d7114912840x770a9204fdacae411f111964673a57a0fd1d6293false10880x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700x8bed0e679df86f14415fd9474c440b263df9506c130369086822022-12-16T17:38:56.000Z0xd6b16817a386927c0b498bd9dcde2e039867d9b24afb5322c9acb8cbadf997b6
0xcf083be4164828f00cae704ec15a36d7114912840x4b47fe781f0642283303f04941a45700d6c83522false10890x2791bca1f2de4661ed88a30c99a7a9449aa841740x2ab0e9e4ee70fff1fb9d67031e44f6410170d00e413369159682022-12-16T22:15:23.000Z0x7968328898484c55e78cdf4d799597c8116e0be2839b9724515ddb7f1abd1200
0xcf083be4164828f00cae704ec15a36d7114912840x65c37f48781a555e2ad5542e4306ebab1ae93cd7false690x0d500b1d8e8ef31e21c99d1db9a6444d3adf12700xc68e83a305b0fad69e264a1769a0a070f190d2d6245160981992021-06-24T15:10:19.000Z0x47fc99d29d2ec90506178693ef32afca1c38f430637f59d7dd2195f814631a08
Query with partition filter
SELECT *
FROM `tt-contracts.apeswap_v1_polygon.ApeFactory_PairCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

ApePair_Burn_event

Liquidity removal events from ApeSwap decentralized exchange (DEX) pair contracts, recording amounts of both tokens withdrawn when liquidity providers burn their LP tokens. Used for tracking liquidity exits and pool balance changes across ApeSwap deployments.
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
0xe5267881f38c74b253b3474b2801d150b7a05c8f0x034293f21f1cce5908bc605ce5850df2b1059ac0false0xc0788a3ad43d79aa53b09c2eacc313a787d1d60730455369793971259042505295028143777363369455136168880252021-07-15T13:09:40.000Z0x8e407973a223dd752e775edc7b2196fa865ec819387023b077b9a9f91094e82b
0xacb9af7d66c69e8533b2cd39694a7ddf03bbd7140x034293f21f1cce5908bc605ce5850df2b1059ac0false0xc0788a3ad43d79aa53b09c2eacc313a787d1d607501131817887928813309610765347125502414664168893992021-07-15T14:03:16.000Z0xaeda0b0ee82635e60d034bed3ca737e79f33dafbba65a903f7fe826756314518
0x87279a012d49f44ed3a347c50dcc7cd0d7dec61e0x034293f21f1cce5908bc605ce5850df2b1059ac0false0xc0788a3ad43d79aa53b09c2eacc313a787d1d607149302711858559252079140265345574180030734139168766752021-07-15T06:10:55.000Z0xe0a3b10db47393636c8c5bde812d16b0c634dc152e4402234b1fe30bbff6896a
Query with partition filter
SELECT *
FROM `tt-contracts.apeswap_v1_polygon.ApePair_Burn_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

ApePair_Mint_event

Liquidity provision events emitted when tokens are deposited into ApeSwap DEX (Decentralized Exchange) trading pairs. Records sender address and amounts of both tokens added to liquidity 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.
addressremovedin_senderlog_indexin_amount0in_amount1block_numberblock_timestamptransaction_hash
0xb8e54c9ea1616beebe11505a419dd8df1000e02afalse0x89d2adba00fa9b1b7068a8ff784046055c21809920927107761869882610925859365469538912808331699882022-09-16T07:50:55.000Z0x827bb728fc2b52c583e9e1602cb0661375c6d6a23aa658267fa6836cdaf82e04
0x034293f21f1cce5908bc605ce5850df2b1059ac0false0xc0788a3ad43d79aa53b09c2eacc313a787d1d6072684328478937453365053814005220363322248331587762022-09-16T01:23:09.000Z0x8385e3da1af533aab517af0465cb684f4d089b3cec7bb11f106f7efc45a07c4e
0x034293f21f1cce5908bc605ce5850df2b1059ac0false0xc0788a3ad43d79aa53b09c2eacc313a787d1d6072055192685236723547094548449898541079171331633872022-09-16T04:01:41.000Z0x0c84680b29601155b8733aef3d41e0bfb1d473d74b953a391677e1406faa2c31
Query with partition filter
SELECT *
FROM `tt-contracts.apeswap_v1_polygon.ApePair_Mint_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

ApePair_Swap_event

Token swap events from ApeSwap DEX (Decentralized Exchange) liquidity pools recording bidirectional token exchanges with sender and recipient addresses. Contains input and output amounts for both token0 and token1 in each swap transaction.
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
0x0000084397b6d03d925d3deeddea90edb4f073b40x65d43b64e3b31965cd5ea367d4c2b94c03084797false0xc0788a3ad43d79aa53b09c2eacc313a787d1d607764991081955762210000000000000049867092023-11-13T22:57:30.000Z0x3dc553213d5db0119494d255e7b35356372fddd128e3ad080aacad6ebc3a53b4
0x00933357b10e24a8723c8863ca74166654e7e4040x65d43b64e3b31965cd5ea367d4c2b94c03084797false0xc0788a3ad43d79aa53b09c2eacc313a787d1d607172498945031643853600000000000000142474672023-11-13T13:07:00.000Z0x27364eb1c2867482e2d7590cc0e6beaf0e1aa41d64a445a6b0e1d46dd569a724
0x00ca0dd51dcd486cde843c7b2b734fec203dd2890x65d43b64e3b31965cd5ea367d4c2b94c03084797false0x66a2995547ee992c0d7bed1a01ec0383ee8fb0441814990580625346571359189645610023489452023-11-13T19:59:33.000Z0x36e3c5284bd14d9aada68250a0d7c2da6e7de0ff2dfbca6ccad449b6632112bd
Query with partition filter
SELECT *
FROM `tt-contracts.apeswap_v1_polygon.ApePair_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

ApePair_Sync_event

Liquidity pool reserve synchronization events emitted by ApeSwap V1 pair contracts. Contains updated reserve balances for both tokens in the pool after swaps, liquidity additions, or withdrawals.
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
0x019011032a7ac3a87ee885b6c08467ac46ad11cdfalse297666508989427336767574148440011770013722025-09-28T10:03:47.000Z0x186ab7319986348d18c5f1eed0fc7a020cf4a78d8305f3e4df50ed62c26617ec
0x019011032a7ac3a87ee885b6c08467ac46ad11cdfalse764662315434606707600205149377072769969792025-09-28T07:28:13.000Z0x70c0341c3b28709e4d52de417ac1ea723b326751d7601b5454503f5603f7c866
0x019011032a7ac3a87ee885b6c08467ac46ad11cdfalse232667410560060575626666148249533770070632025-09-28T13:25:21.000Z0x7ac787a00791844a16962aa15f6c54b74b401d40f36ce33add7309bc1dbfb1f5
Query with partition filter
SELECT *
FROM `tt-contracts.apeswap_v1_polygon.ApePair_Sync_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

ApePair_Transfer_event

ERC-20 Transfer events emitted by ApeSwap liquidity pair contracts, recording minting, burning, and transfers of LP (liquidity provider) tokens. Tracks liquidity changes and LP position movements across ApeSwap DEX 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_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
0x36d32dc87d861a7d8c6dc7a6161c0ffcc9c26ca00x019011032a7ac3a87ee885b6c08467ac46ad11cd0x0000000000000000000000000000000000000000false27833896636311392172854792021-07-26T09:53:34.000Z0x037acf928eb2f0117ee05b558e91eac264fc4429faa0be2cdcf71125311ef9b0
0x94bfe225859347f2b2dd7eb8cbf35b84b4e8df690x019011032a7ac3a87ee885b6c08467ac46ad11cd0x0000000000000000000000000000000000000000false221809363659391172854792021-07-26T09:53:34.000Z0x037acf928eb2f0117ee05b558e91eac264fc4429faa0be2cdcf71125311ef9b0
0x00000000000000000000000000000000000000000x019011032a7ac3a87ee885b6c08467ac46ad11cd0x019011032a7ac3a87ee885b6c08467ac46ad11cdfalse4731359246790579172944172021-07-26T15:57:59.000Z0x13826c8f5f039a6734520a0f8da8c0cd5fccdb1a81d9dc1b1e9747ca3640e4a0
Query with partition filter
SELECT *
FROM `tt-contracts.apeswap_v1_polygon.ApePair_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MiniApeV2_Harvest_event

Harvest events from ApeSwap’s MiniApeV2 staking pools on Polygon, recording user reward claims with pool ID, harvested token amounts, and user addresses. Used for tracking yield farming reward distributions and user staking activity across different liquidity 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_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_pidSTRINGPool identifier referencing a specific staking or liquidity pool within the protocol. Numeric string representation of the pool ID.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
in_pidaddressin_userremovedin_amountlog_indexblock_numberblock_timestamptransaction_hash
00x54aff400858dcac39797a81894d9920f16972d1d0x0a8557b9f8cd68d46e3c0a33007623e4637f9a49false2168046829357628860278338896482022-10-03T18:59:53.000Z0xad327638d36ffa36ea23efe8c5233227b256be0b98f27c6bfcd4b2f8d98ad559
00x54aff400858dcac39797a81894d9920f16972d1d0x1a9bca1327871530c60cfe65eeebfab4e2a20c38false32088830608690045303995338923732022-10-03T20:34:36.000Z0x6f6a0ff05a9a7773f63a2779af4683e424c127e2e1f0cc58defc3de0c9b7b2f8
00x54aff400858dcac39797a81894d9920f16972d1d0x1e557c24fc7ac9989c78c017b91bf0b0ad63334dfalse13696908844952882881168338690332022-10-03T07:05:59.000Z0xc69a45ff22acc3638bf616fcc6b4bccfa131a8c01b21e09ef0963f5d7a0dbca6
Query with partition filter
SELECT *
FROM `tt-contracts.apeswap_v1_polygon.MiniApeV2_Harvest_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100