Skip to main content

Tables

APTFarm_Harvest_event

Reward claim events from Trader Joe V1 APT (Auto-Pool Token) farms on Avalanche, recording harvested token amounts by users from specific pool IDs. Used for tracking yield farming reward distributions and user farming behavior across 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_unpaidAmountSTRINGAmount of rewards that remain unclaimed or unpaid to the user after this harvest event. Stored as a wei-denominated string, typically zero when users fully claim their available rewards.
in_pidaddressin_userremovedin_amountlog_indexblock_numberblock_timestampin_unpaidAmounttransaction_hash
00x57ff9d1a7cf23fd1a9fd9dc07823f950a22a718c0x0bff7dc1e080cad0491deeb4af30df129e30af21false6105412159466734724466500602024-06-13T03:13:42.000Z00x3c9583077f9f7a69c4a5f9e639d52d8f8e0af8ba0858df61117388ee6c59cf3a
00x57ff9d1a7cf23fd1a9fd9dc07823f950a22a718c0x0bff7dc1e080cad0491deeb4af30df129e30af21false1214669019238242466500862024-06-13T03:14:34.000Z00x8de6f98a4d22bb29e737efc71ce62ceb801df861e01da08e82a43d04f6b81091
00x57ff9d1a7cf23fd1a9fd9dc07823f950a22a718c0x1d87ac54011fbe4472079ac67e7bc3341d0de77efalse254981594231965251153466503472024-06-13T03:23:24.000Z00xc06c30f08a8853c9f097fbf528ff3e9c9b70cc082243dedc63eddf1e79dbfd09
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.APTFarm_Harvest_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

APTFarm_RewardClaimed_event

Reward claim events from Trader Joe v1 liquidity mining farms on Avalanche, tracking released and unreleased token incentives by user, market, and epoch. Used for analyzing yield farming reward distributions and user claim behavior across different lending markets.
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_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_epochSTRINGEpoch identifier for the protocol event or operation. String-encoded numeric value representing the time period or reward cycle.
in_releasedSTRINGAmount of tokens released to the user in the reward claim transaction. String-encoded integer representing token quantity in the smallest denomination.
in_unreleasedSTRINGAmount of tokens not yet released to the user at the time of the reward claim. String-encoded integer representing token quantity in the smallest denomination.
addressin_userremovedin_epochin_tokenin_marketlog_indexin_releasedblock_numberin_unreleasedblock_timestamptransaction_hash
0x624c5b9beb13af6893e715932c26e2b7a59c410a0xf95c27a51f2e340d52e8a3c428cd6e290f51ca00false00x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd0x48692b3b38bb7ddfe2b36efabba298f3cd5c49ce31164000000000000000004452272102024-04-22T12:14:30.000Z0xa064b204fe4e442ed52da3ed25aa5534bfb766e4702b1e6f0b6abdac8fdd2550
0x624c5b9beb13af6893e715932c26e2b7a59c410a0xf6e57e1cdea04b745dfcba85c2b52adf0549b385false00x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd0x207004f671e20631673c03a20226c5a123ccad2920171633815972222222234453117102024-04-22T17:08:42.000Z0xbc8e5c8cc9c8b3dc1e58b99d2c1dd04bb3679d2b44adf0d2ceb6856032096c0c
0x624c5b9beb13af6893e715932c26e2b7a59c410a0xf6e57e1cdea04b745dfcba85c2b52adf0549b385false00x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd0x207004f671e20631673c03a20226c5a123ccad29504453117202024-04-22T17:08:44.000Z0x81cd0ce514a4ca6859c76699862abaeca5b70072d87cc15f0223d9576f2de796
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.APTFarm_RewardClaimed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

BoostedMasterChefJoe_Harvest_event

Reward harvest events from Trader Joe’s BoostedMasterChef staking contract on Avalanche, capturing when users claim accumulated JOE token rewards from liquidity pool (LP) positions. Used for analyzing yield farming behavior, reward distribution patterns, and staking pool activity across different pool IDs (pid).
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
00x4483f0b6e2f5486d06958c20f8c39a7abe87bf8f0x5df79ebe609d93b9624f987c32df3f7cb67321b2false14850168466992212206455332022-10-04T18:34:14.000Z0x79dc86f9569a0a1b9bed20a904c9a1314ac70f5b057bdb7242c6f3cb3508916c
00x4483f0b6e2f5486d06958c20f8c39a7abe87bf8f0x997b86481ea10a414ac34acbcf1e3030274a618dfalse366870045064417412206494232022-10-04T20:48:23.000Z0x4d59eceeccd2f03d1491c75192d587e2d93858d9832ea1e59ba3686079fd735d
00x4483f0b6e2f5486d06958c20f8c39a7abe87bf8f0x6b84e2fce033e0a1044120db9d427dae3d9282cbfalse3308200875184405275412206294282022-10-04T09:19:30.000Z0x29a3410014c1e1270b3b4213ae3654e9b92026b9ea7245abd02e61998f888de6
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.BoostedMasterChefJoe_Harvest_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MakerRewarder_RewardClaimed_event

Liquidity mining reward claim events from Trader Joe V1 automated market maker (AMM) on Avalanche, tracking released and unreleased token amounts by user, epoch, and market pair. Used for analyzing liquidity provider incentive distributions and claiming patterns across trading 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_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_epochSTRINGEpoch identifier for the protocol event or operation. String-encoded numeric value representing the time period or reward cycle.
in_releasedSTRINGAmount of tokens released to the user in the reward claim transaction. String-encoded integer representing token quantity in the smallest denomination.
in_unreleasedSTRINGAmount of tokens not yet released to the user at the time of the reward claim. String-encoded integer representing token quantity in the smallest denomination.
addressin_userremovedin_epochin_tokenin_marketlog_indexin_releasedblock_numberin_unreleasedblock_timestamptransaction_hash
0x624c5b9beb13af6893e715932c26e2b7a59c410a0xf4605fa919825e4a85813752006697bc14cfc0edfalse20x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd0xd446eb1660f766d533beceef890df7a69d26f7d1103602444444444444444443485861716394444444444444452023-09-06T23:33:31.000Z0x13f9c4b8fa50fb957c4be17084e7d9849b5d087b9931babe93f23838a5b334ff
0x624c5b9beb13af6893e715932c26e2b7a59c410a0xcb948151fec839ba0bc3a4829d81b8a32ef3354cfalse20x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd0xd446eb1660f766d533beceef890df7a69d26f7d1105866173677248677248683485859227533465608465608472023-09-06T23:32:41.000Z0x151268707bc2c99d5f7c6d35769c685a4545856d73f06bc2b2c028afd12f95d7
0x624c5b9beb13af6893e715932c26e2b7a59c410a0x027b4be6ab597f51a0ec6d564051c70c7feac9f2false20x6e84a6216ea6dacc71ee8e6b0a5b7322eebc0fdd0xd446eb1660f766d533beceef890df7a69d26f7d1114574054761904761904763485866335945238095238095242023-09-06T23:35:12.000Z0x21dbc17e6db3db337eef6231087ab5f90346ac2db65d31e63171b2e494093513
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.MakerRewarder_RewardClaimed_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MasterChefJoeV2_Harvest_event

Harvest events from Trader Joe V2 yield farming contracts on Avalanche, recording when users claim JOE token rewards from liquidity mining pools. Contains pool ID, user address, and reward amounts for tracking farm reward distributions and user claiming patterns.
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
550xd6a4f121ca35509af06a0be99093d08462f530520x01b630e4c8c64c9abfd843c2c7ec3b0fcd1cf609false118460920837107298425690509152022-01-02T19:17:42.000Z0x22e22e7a3596b19782dce7a68becd4e4d47d61bf15bf7904a775cc0e030bd78d
660xd6a4f121ca35509af06a0be99093d08462f530520x188bed1968b795d5c9022f6a0bb5931ac4c18f00false2309044585987261146425690473982022-01-02T17:19:28.000Z0x860336ee8eea4d6f969cb9f7fb862d232f28ee2052fe4dd5335bf6311a95562c
660xd6a4f121ca35509af06a0be99093d08462f530520x188bed1968b795d5c9022f6a0bb5931ac4c18f00false1539363057324840764325690434562022-01-02T15:10:40.000Z0x7d59ad6f803899642ce541e672be1e544f7969376eb2e5310bd1f0afdbd2b766
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.MasterChefJoeV2_Harvest_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MasterChefJoeV3_Harvest_event

Reward harvest events from Trader Joe V3 MasterChef staking contract on Avalanche, tracking users claiming earned JOE tokens from liquidity pool positions. Contains pool identifiers (pid), harvest amounts, and user addresses for analyzing yield farming reward distribution.
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
00x188bed1968b795d5c9022f6a0bb5931ac4c18f000xd784dd3706366d6cf9dd7d379148de9221f67fc3false012202256562022-09-24T17:29:24.000Z0x6c295cdef2ea0cccd4490215c000ed372d80fe1bbad830dabc838f1e7eacbd48
20x188bed1968b795d5c9022f6a0bb5931ac4c18f000xbfa5e5dc6861a23fd7e64cb435535d1511d59a5cfalse012202159812022-09-24T11:53:57.000Z0x9b7ebd2da361c1ba3849daf253c3cfc730d5f9ecba5d818b67595b48034cc8b1
210x188bed1968b795d5c9022f6a0bb5931ac4c18f000xf7067c27e354aa91ddc822692993c30151c0417cfalse012202116252022-09-24T09:21:20.000Z0x3c18805eaa2490fe15e0f3fe369a207a2ca0f3e49e4a84c148dd5f73f6dd6a81
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.MasterChefJoeV3_Harvest_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
0x2e676a99e039eb4415168746185b787563146d9e0x2a8a315e82f85d1f0658c5d66a452bbdd9356783false0x2e676a99e039eb4415168746185b787563146d9e864496446285458422023-04-10T02:29:05.000Z0x092410dbeb30a4f208e15b7bb1f97800bfda0dc4a612c6870df746e64aed71b9
0x51f268350a47024cf55a309607e17ba3d19a8b060x00cb5b42684da62909665d8151ff80d1567722c3false0x60ae616a2155ee3d9a68541ba4544862310933d41591231145760305585574824621989620289696285819692023-04-10T22:47:35.000Z0xced65481fb9c23107ac6be02a8381d12f0a2e32173a564e966cc577acff81793
0xebc9e5b31c4a5ff9f3734cfa215eea0e8114dfe90x00cb5b42684da62909665d8151ff80d1567722c3false0x60ae616a2155ee3d9a68541ba4544862310933d415103218104605633320465478795066476182560285700032023-04-10T16:02:26.000Z0x5bf2836fc3ce514b4e1df669bb9e5ecf31922458a994f9ebd85166bac5c0a508
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.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
0x00979bd14bd5eb5c456c5478d3bf4b6e9212ba7dfalse0x60ae616a2155ee3d9a68541ba4544862310933d482374650664312668174669498701508752208983195754622022-09-05T20:47:28.000Z0x45f4ea4a5e17092edbaa7ec3aee68269da0468737ab5735e1e29db89a746311c
0x00979bd14bd5eb5c456c5478d3bf4b6e9212ba7dfalse0x7a1a50ad50f297f01e354074af384e5b4001090d36242768754737285966339335140542509800251062195619102022-09-05T11:39:05.000Z0x8b06ef05e9ff8e82bd06b1536824998e216223bbc45adb6e22fa2f04d590be41
0x00c87ce7188f7652d0c0940274cec5db62f1e825false0x60ae616a2155ee3d9a68541ba4544862310933d4352549494419844916459102976138014578502195497532022-09-05T00:33:33.000Z0x71d6d0a31e7452c64018fc38a1801363995751a7ef8291b808909a9b855275f6
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.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
0x1f078d6daef89141ea10bfb72c116545e2de09ff0x0016d4cd75fcbf6c33ca95f7b2630aaa4713ee6afalse0xbb90f0b52ff68c804b635fd25186b042a7d945e210166182266236945511126035531001164424171450395925952022-06-28T07:08:28.000Z0x329e7a146939fe6b94b88d46ba580f7acaa8efa46745886cd11f4d7872874cf0
0x4d61e968636711ca148be36dc2c881e4a1529e630x0016d4cd75fcbf6c33ca95f7b2630aaa4713ee6afalse0xe2afe5f7b5a876f48261454f8ee23205d939f6652116618225282288284506517286800545046611442334211112022-06-28T07:08:26.000Z0x2284345461e33bcff60c4acf5430b3021e642eb8aa1ef124946824439c9a5dd4
0x5df26928f4580b308164d513245759bbb58f96490x0016d4cd75fcbf6c33ca95f7b2630aaa4713ee6afalse0x60ae616a2155ee3d9a68541ba4544862310933d440166400259897859569012421001763934532183172312022-06-28T19:14:09.000Z0x080df28a48303a48c9441a3d12f59835a4ef89799fcbad2429bd559e2b755a2a
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.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
0x0060de250de943e4513b70b2e8e5d78671f6c335false371661701973305240128403199167475870564289044966906906340785462023-08-18T12:37:32.000Z0x52c52069ede38776ff970ea959dd6c592fb98e75c5f3329b08f434b0f1eb3ba4
0x0060de250de943e4513b70b2e8e5d78671f6c335false471661787094596390104403219821500646063208159269591374340785462023-08-18T12:37:32.000Z0x52c52069ede38776ff970ea959dd6c592fb98e75c5f3329b08f434b0f1eb3ba4
0x0060de250de943e4513b70b2e8e5d78671f6c335false511661787094596390104402211771946894448050138871417396340785462023-08-18T12:37:32.000Z0x52c52069ede38776ff970ea959dd6c592fb98e75c5f3329b08f434b0f1eb3ba4
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.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
0x8d59262a4dadcd736428e339e013ca5a10f2f69e0x00a386afb1524b572de7ea0a3aaad25cdf7e749a0x92614d3537f0035bddec0ea444c0b1f55c8c9bdafalse02194022402022-09-01T13:19:07.000Z0xfa994cf8432f3cf63eb2d98bf2afd935bf5d5f9f450ed0abda4d456191181e1c
0x92614d3537f0035bddec0ea444c0b1f55c8c9bda0x00a386afb1524b572de7ea0a3aaad25cdf7e749a0x0eab5ee60bf26fccfc24992314d029678063bd7efalse54675490000000000001193927762022-09-01T08:01:25.000Z0x03d7e38b5ad82e42a178322136c09d5058d080bdef5a77b53672a9e3b36144da
0x40c65404d157eae95ce46b510a51ceeeb1c31fc50x00a386afb1524b572de7ea0a3aaad25cdf7e749a0x92614d3537f0035bddec0ea444c0b1f55c8c9bdafalse013194183892022-09-01T22:19:04.000Z0xed0e171e2c99236f4f45bb929c534251e2ae7d4934c03d823328d33893a3a64c
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.Pair_Transfer_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
0x9ad6c38be94206ca50bb0d90783181662f0cfa100xca00cb0d67ab9e3a038dca28e0872a411f791db1false172790x34ca0eeb1c7e90bb4ab66c5735527097236875880xb31f66aa3c1e785363f0875a1b74e27b85fd66c70227960162022-11-24T20:21:12.000Z0x444fce22fc905e35352b7c30c79d3f40bef43b7b6f98ccc93ea1b418afd03ec3
0x9ad6c38be94206ca50bb0d90783181662f0cfa100x409cb8505df93196909328fc9b948ddcb4e70c85false166230x9dd4e962123ac4b69749434a971cae2d4a32e5c40xb31f66aa3c1e785363f0875a1b74e27b85fd66c719171105562022-07-09T17:43:27.000Z0x2b473a67f5c88ed6255eaac2363a2dd9564c033005a85dd951cc24b90fb8d8ac
0x9ad6c38be94206ca50bb0d90783181662f0cfa100xb9775b9efefaefa014f159ae43058c954116aa31false166210x9a8e0217cd870783c3f2317985c57bf5709691530xb31f66aa3c1e785363f0875a1b74e27b85fd66c76170807532022-07-09T00:58:05.000Z0xd880962eb55ea55a75c853da252266037c1da92d68f904dc8002d85bb4f3727f
Query with partition filter
SELECT *
FROM `tt-contracts.traderjoe_v1_avalanche.PairFactory_PairCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100