Skip to main content

Tables

DMMPool_Swap_event

KyberSwap Dynamic Market Maker (DMM) pool swap events capturing token exchange activity within liquidity pools. Records sender, recipient, input/output amounts for both tokens (token0/token1), and precision-scaled swap fees for DEX trading analytics.
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_feeInPrecisionSTRINGSwap fee amount expressed in high-precision fixed-point format. Stored as decimal string representing the fee scaled by a precision factor.
in_toaddressremovedin_senderlog_indexblock_numberin_amount0Inin_amount1Inin_amount0Outin_amount1Outblock_timestamptransaction_hashin_feeInPrecision
0x0a1e3cc9997efbbbe2d49b6ddfc30b8de00240b30xd4ecc4b71d70159f9cdaa9960453da5558639c51false0x0a1e3cc9997efbbbe2d49b6ddfc30b8de00240b36031206420243956120001181649712638850700892022-02-17T06:26:51.000Z0x4c3c4190e75d73a0ef48761ae70abf63a98f1f5a744d2103de591d88d968c1dd1504165046613757
0x0a1e3cc9997efbbbe2d49b6ddfc30b8de00240b30xd4ecc4b71d70159f9cdaa9960453da5558639c51false0x0a1e3cc9997efbbbe2d49b6ddfc30b8de00240b31431245976219107734001111711443585988309282022-02-17T16:18:49.000Z0xf04c1626d57924d96798a1d9b4a2f67192fc2244f89f5d08f1719dd8bf06e1ac1505112727207038
0x0a1e3cc9997efbbbe2d49b6ddfc30b8de00240b30xd4ecc4b71d70159f9cdaa9960453da5558639c51false0x0a1e3cc9997efbbbe2d49b6ddfc30b8de00240b3531211567255546380001212081723406029059532022-02-17T07:46:54.000Z0x5b0e07737be004ba3b5953077b6d1c2714decf16b02bf4dad22839a9ce109c4c2725950473063798
Query with partition filter
SELECT *
FROM `tt-contracts.kyber_v2_fantom.DMMPool_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DMMPool_Sync_event

Kyber Dynamic Market Maker (DMM) pool synchronization events emitted after reserve balance updates. Contains actual and virtual reserve amounts for both tokens in the pool pair, used for tracking liquidity state changes and amplified liquidity calculations.
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_vReserve0STRINGVirtual reserve amount of the first token in a Kyber liquidity pool. Stored as decimal string representing the smallest unit of the token.
in_vReserve1STRINGVirtual reserve amount of the second token in a Kyber liquidity pool. Stored as decimal string representing the smallest unit of the token.
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_numberin_vReserve0in_vReserve1block_timestamptransaction_hash
0xa4e35c30f2a22ae8e45f1a67e97bd4a868cf68a3false552490809822462722953354895591547370593311826207560250230282023-02-16T12:00:34.000Z0x05b34ba3932194afb1a9235afccfd08b647f2403ad43796803e0616764962a35
0x4dae522a0d8df4bd800a72ff82dccd569bb81a98false8513673247880374049882527455889416149817629788037404988252742023-02-16T03:33:00.000Z0x00c1685e8db06fe5887c219312251d73ad0240c5350e70e8ab5c685f2205f68b
0x42e7cbcfa832ac45bdd5a7dc3d0ca2246bd5cfdafalse4753324094252609409491025855889595002023-02-16T03:36:20.000Z0x39e11bad38877296bf14ee8a9c89f893eada2cff6d1dc2e56be72e4ecd01d72e
Query with partition filter
SELECT *
FROM `tt-contracts.kyber_v2_fantom.DMMPool_Sync_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

Factory_PoolCreated_event

Factory contract event emitted when a new liquidity pool is created, recording token pairs and pool configuration parameters. Used for tracking DEX pool deployments and liquidity market initialization.
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_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_ampBpsSTRINGAmplification factor of the liquidity pool expressed in basis points (BPS). Numeric string value that defines the pool’s price curve characteristics in the Kyber protocol.
in_totalPoolSTRINGTotal number of liquidity pools created by the factory contract at the time of this pool creation event. Numeric string value that increments sequentially with each new pool.
addressin_poolremovedin_ampBpsin_token0in_token1log_indexblock_numberin_totalPoolblock_timestamptransaction_hash
0x78df70615ffc8066cc0887917f2cd72092c864090xebb19f5f66d8eba10ff0a8d99756221f1ac3ef1afalse200000x04068da6c83afcfa0e13ba15a6696662335d5b750x337dc89ebcc33a337307d58a51888af92cfdc81b033760510272022-03-18T14:59:42.000Z0x6e356580ab44697cf4951295842a868710aaac40d79aa83253b018589f573999
0x78df70615ffc8066cc0887917f2cd72092c864090x2884ff7ac6ca35e06151ef1b0368a4d28d3b73fefalse200000x337dc89ebcc33a337307d58a51888af92cfdc81b0xa686bb86b258adefc6bbc6e896d7c1520b3d55104433777235282022-03-18T19:33:02.000Z0x8126c6f48cdd68286103b736976a6eb60bc9791f6bd3326c2530af44951dd3b0
0x78df70615ffc8066cc0887917f2cd72092c864090xa5a31b4683da95cc20200c2366e8de702f797ea8false200000x21be370d5312f44cb42ce377bc9b8a0cef1a4c830x337dc89ebcc33a337307d58a51888af92cfdc81b734758348292022-03-30T02:47:45.000Z0xad51c0f22b2eb37f4c5a470d18622284ff77d9700e4f96f83530130b5a047371
Query with partition filter
SELECT *
FROM `tt-contracts.kyber_v2_fantom.Factory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

KSFactory_PoolCreated_event

Liquidity pool creation events emitted by the KyberSwap factory contract. Records token pair addresses, amplification parameters, fee configuration, and cumulative pool count for tracking DEX deployment 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_poolSTRINGContract address of the pool being referenced in the event. Hex-encoded, 0x-prefixed, 42-character string.
in_ampBpsSTRINGAmplification factor of the liquidity pool expressed in basis points (BPS). Numeric string value that defines the pool’s price curve characteristics in the Kyber protocol.
in_feeUnitsSTRINGFee charged by the liquidity pool for trades. Numeric string value representing the fee in basis points or fee units defined by the Kyber protocol.
in_totalPoolSTRINGTotal number of liquidity pools created by the factory contract at the time of this pool creation event. Numeric string value that increments sequentially with each new pool.
addressin_poolremovedin_ampBpsin_token0in_token1log_indexin_feeUnitsblock_numberin_totalPoolblock_timestamptransaction_hash
0x1c758af0688502e49140230f6b0ebd376d429be50xc2995a065106b5c5c738b2320387460ebd12c12dfalse100000x21be370d5312f44cb42ce377bc9b8a0cef1a4c830x744c01bb3a9cb59392e7f0d515f6b3e92b11c2ef1210006614295382023-07-21T11:07:49.000Z0xb7ea89adb28ce39a370d3f423adb0c07a66aa31fd7d6a893d51cfc449d7676a7
0x1c758af0688502e49140230f6b0ebd376d429be50x023c2773aa71b4b1ca7d30dd11748fe32a4fa02efalse140000x179590b7a31f96c7f0625fee792a4f144097778c0x21be370d5312f44cb42ce377bc9b8a0cef1a4c83010004120139822022-06-24T04:21:19.000Z0x301b39ec659bb91ac4fbd60f82843a2521205df3d04834cb13f49ddcfd615722
0x1c758af0688502e49140230f6b0ebd376d429be50x5cd7c1efec89f0a6bcec73ec72b69e7376ed6349false170000x179590b7a31f96c7f0625fee792a4f144097778c0x21be370d5312f44cb42ce377bc9b8a0cef1a4c8303004106985312022-06-22T09:17:55.000Z0x3b14c3adee7ec048061b1888e51a98ccacf260c208c7f54862cea15ecf3e46f5
Query with partition filter
SELECT *
FROM `tt-contracts.kyber_v2_fantom.KSFactory_PoolCreated_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

KSPool_Swap_event

KyberSwap pool swap events recording token exchanges within liquidity pools. Contains input and output amounts for both token0 and token1, swap fees, initiating sender, and recipient address for tracking DEX trading activity and volume analysis.
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_feeInPrecisionSTRINGSwap fee amount expressed in high-precision fixed-point format. Stored as decimal string representing the fee scaled by a precision factor.
in_toaddressremovedin_senderlog_indexblock_numberin_amount0Inin_amount1Inin_amount0Outin_amount1Outblock_timestamptransaction_hashin_feeInPrecision
0xccf6b19bc2419e776b6ee030044811da846686fb0x52a371c20863dc7e3866e065cf172a59eb49e13bfalse0xccf6b19bc2419e776b6ee030044811da846686fb1450023837999500464819397087226652022-10-26T09:14:18.000Z0x9e7576bae26f8d3a067faa92525825e8f1319ede795ef3a05158e616c513f3f7500000000000000
0x1d5702c6d7eb30e42a8c94b8db7ea2e8444a37fd0x52a371c20863dc7e3866e065cf172a59eb49e13bfalse0x1d5702c6d7eb30e42a8c94b8db7ea2e8444a37fd95473679868646001471068804416809632023-01-30T20:08:32.000Z0xea45fa40487d86c946977f2789b725ae930fdef0465cde001f96a1d59b038382500000000000000
0x1d5702c6d7eb30e42a8c94b8db7ea2e8444a37fd0x52a371c20863dc7e3866e065cf172a59eb49e13bfalse0x1d5702c6d7eb30e42a8c94b8db7ea2e8444a37fd21547404650211220006759040241016002023-01-30T21:21:45.000Z0x4ce96f6c8e1ff5c5d24c7c06244c403a96e077651c56cae8fbf6b0e276226b1e500000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.kyber_v2_fantom.KSPool_Swap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

KSPool_Sync_event

KyberSwap pool synchronization events emitted when liquidity pool reserves are updated. Contains actual reserve balances (reserve0, reserve1) and virtual reserves (vReserve0, vReserve1) used in Kyber’s dynamic market maker pricing mechanism.
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_vReserve0STRINGVirtual reserve amount of the first token in a Kyber liquidity pool. Stored as decimal string representing the smallest unit of the token.
in_vReserve1STRINGVirtual reserve amount of the second token in a Kyber liquidity pool. Stored as decimal string representing the smallest unit of the token.
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_numberin_vReserve0in_vReserve1block_timestamptransaction_hash
0x52a371c20863dc7e3866e065cf172a59eb49e13bfalse35462202143281534911382612053738114002023-01-14T07:09:43.000Z0xb5e2309366d73adb51c18be497653e5d934eae5af7ae7edf92107b8410fd1b80
0x52a371c20863dc7e3866e065cf172a59eb49e13bfalse75367286180249583550712566249664746002022-10-21T04:58:04.000Z0x228f7bfd6e25d032ec6ead72e79b0e1b4ec57db54dd1cde34e3c3c9bfb5c1140
0x52a371c20863dc7e3866e065cf172a59eb49e13bfalse115365261181249583550712566249679822002022-10-21T09:38:20.000Z0xe7061d755b4777d7fbde949824da2a9a2493618e0fa6b4e097712301d2839dbb
Query with partition filter
SELECT *
FROM `tt-contracts.kyber_v2_fantom.KSPool_Sync_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100