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
0x02a84c1b3bbd7401a5f7fa98a384ebc70bb5749e0x955f4d38e0443a750bc404ddef4bac36bf696c74false118280x2779106e4f4a8a28d77a24c18283651a2ae22d1c0xe2864c5ee37a3178d560c55282637cdda355c35120382741312024-10-27T11:17:34.000Z0x677a1b0966ed5214ebd19cdfcdd9d25bbf43d8e09a7ab5ed9f9db7f2ee1fba34
0x02a84c1b3bbd7401a5f7fa98a384ebc70bb5749e0xa962cddfabf9edd10c560916acc508c7d3317547false590x42000000000000000000000000000000000000060x74a6287bdd90831cff5bdb70a8bc25dba53e96c6197098552023-12-01T20:46:18.000Z0x594efcf4c6d5bebb9e80688879bac20a6b39b7ded606696f933ee4afbfa000f0
0x02a84c1b3bbd7401a5f7fa98a384ebc70bb5749e0x948a7114ba61e28559276d983b2a049a404086a8false2000x7c6b91d9be155a6db01f749217d76ff02a7227f20x9e5aac1ba1a2e6aed6b32689dfcf62a509ca96f333229248152024-05-02T19:35:38.000Z0x03faf140f80968bcd2cb2f626fccdeb65a1e03782776dc9a4b74fb538e475d80
Query with partition filter
SELECT *
FROM `tt-contracts.pancakeswap_v2_opbnb.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
0x8cfe327cec66d1c090dd72bd0ff11d690c33a2eb0x4106f2efc659b89563886590057005961df1de87false0x8cfe327cec66d1c090dd72bd0ff11d690c33a2eb1626819989723294507888261744681419158279663573232023-10-24T01:30:46.000Z0xf1971d687c33a15664cf8d7e0e3bb62320710cac70f91485122868bb55e6c406
0xcab8788c9c788eee1741a00f9bb742230be426cc0x83156933912102600305864d350f02934d3388dffalse0x8cfe327cec66d1c090dd72bd0ff11d690c33a2eb42102428510477835186021061744219658033277541730195980612024-03-25T07:29:44.000Z0xde7c4708ab0c1d039879b3b01ae3c62b48cd67e40708e5b6459c89eedc846c8b
0x5adf094d761386ba011cc3236d5905a06b45e4ba0xb0dd4b25026cf685eb988d47a4f34cf84c47f2f0false0x8cfe327cec66d1c090dd72bd0ff11d690c33a2eb39375415458586634296189288616152447196516982024-03-25T22:23:41.000Z0xa6d890dd9bbd9b5353b890624707b02525ab6888da4988e6e0b74fd72e6a8aa6
Query with partition filter
SELECT *
FROM `tt-contracts.pancakeswap_v2_opbnb.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
0x177f0bcef458cb379581a9b8e67e02abfe4a3d08false0x8cfe327cec66d1c090dd72bd0ff11d690c33a2eb48681500000000000000000456670911300296500133655022024-01-13T04:13:45.000Z0x51c851c9807c009d1ea3f6c4e25d1aa08a804754f285330a85f510b28f935c9e
0x937d951a63c8a42bc369c3266dce9f73a629fd27false0x8cfe327cec66d1c090dd72bd0ff11d690c33a2eb32100000000000100000000133761142024-01-13T07:10:37.000Z0xf78604131d0e668f6423a7588f770dd4dfe4ee13f345a3636398e70de2b78c1c
0x937d951a63c8a42bc369c3266dce9f73a629fd27false0x8cfe327cec66d1c090dd72bd0ff11d690c33a2eb6110000000000001000000000133750782024-01-13T06:53:21.000Z0x43fc94768aaa8d1cc22ce558ed5ca26a2a63417239a7db027fc11b58a7ea1f3a
Query with partition filter
SELECT *
FROM `tt-contracts.pancakeswap_v2_opbnb.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
0x000000000000c6399510f47ef7691db4db17ae8a0xad762f6c35a1d871508831edd568e497e27cf87efalse0x000000000000c6399510f47ef7691db4db17ae8a326366470994994749894334006262948747280404782024-06-11T15:36:33.000Z0xfeebef80847edc11e8b7f4efbe61be829304219d9488cb6f1176b20730a7ea2f
0x000000000000c6399510f47ef7691db4db17ae8a0x706f7257e78b6f2404a1afb5c480645a6f5be91dfalse0x000000000000c6399510f47ef7691db4db17ae8a32638507231008317774595410019021461356693307812024-06-11T20:46:35.000Z0x84e58dd669763d590551a312ad2d0152f078ca1bbd9d0dc189368aa913e96e76
0x04556a9977761b3fb08f575d54a3affe339003cd0x6273081f09b0d0ee17627e28ce5f7ceba9c97040false0x04556a9977761b3fb08f575d54a3affe339003cd1426391231354216874339934200318057191369802024-06-11T22:29:14.000Z0xe09abbb19e814244c70abc4d08c60e3d7ca7c024a4f0a9dccf043754831c8315
Query with partition filter
SELECT *
FROM `tt-contracts.pancakeswap_v2_opbnb.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
0x0087ee7a03f0b2bc1cee2314ac30b7b902f59f28false151852468775593503591144808877770822416458310287892024-08-04T14:41:52.000Z0x1bd58c5e5a87756e131b728bd6cf8421c1e7001c6a697c057d2c6b750dee1fd3
0x0087ee7a03f0b2bc1cee2314ac30b7b902f59f28false101816452979685897909147687277730156690149310379172024-08-04T17:14:00.000Z0x732209c50328d4d9090a90bbb2d102540a49f3575ae5bb92e92eeb884ac0e8aa
0x03c50d27f98e9ad3d378aad558aede066cda5496false91108185408483715781451373928550828048174310397892024-08-04T17:45:12.000Z0x7675ea6a97079665f95a38e915bc704346e1703dd90406771aaf1fb861d5fd33
Query with partition filter
SELECT *
FROM `tt-contracts.pancakeswap_v2_opbnb.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
0xb0dd4b25026cf685eb988d47a4f34cf84c47f2f00xb0dd4b25026cf685eb988d47a4f34cf84c47f2f00xa44c097e7ddfa2beafc4d16c9bda5e4f294497d2false1828956675855595216208330902024-04-08T14:33:33.000Z0xf189ad81500e6d2c14efa4b63f5ea26b386664b7c7f204592d56fd40854f1bc7
0x00000000000000000000000000000000000000000xb0dd4b25026cf685eb988d47a4f34cf84c47f2f00xb0dd4b25026cf685eb988d47a4f34cf84c47f2f0false1828956675855595218208330902024-04-08T14:33:33.000Z0xf189ad81500e6d2c14efa4b63f5ea26b386664b7c7f204592d56fd40854f1bc7
0xa35e7c976c90212e6000b67d0b39d737d8e05e240xb0dd4b25026cf685eb988d47a4f34cf84c47f2f00x0000000000000000000000000000000000000000false62901382530317208330902024-04-08T14:33:33.000Z0xf189ad81500e6d2c14efa4b63f5ea26b386664b7c7f204592d56fd40854f1bc7
Query with partition filter
SELECT *
FROM `tt-contracts.pancakeswap_v2_opbnb.Pair_Transfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100