Skip to main content

Tables

Mine_Claim_event

Mining reward claim events recording user withdrawals from liquidity mining programs. Captures claimed reward amounts and user addresses for tracking incentive distributions across DODO protocol versions.
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_iSTRINGIndex or identifier parameter used in protocol operations. Numeric string representing a position, rate, or configuration value.
in_userSTRINGAddress of the user account associated with the transaction or protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
in_rewardSTRINGContract address of the reward token being distributed or claimed. Hex-encoded, 0x-prefixed, 42-character string.
in_iaddressin_userremovedin_rewardlog_indexblock_numberblock_timestamptransaction_hash
00x1a4f8705e1c0428d020e1558a371b7e6134455a20xa5d62640081d2a1bc5ded398f2aa5ac6e463746bfalse2983106045708020216013165156785112022-10-05T01:03:59.000Z0x04ade87014976f41f3a708111ab6409f43d6c062e20450b06b817e7b3590e7e7
00x1a4f8705e1c0428d020e1558a371b7e6134455a20xd3fc8f66cade1003b2d40f647d3ecb5a0c2331f3false15891709047720742516642156847972022-10-05T22:10:11.000Z0xc7b58d60df9786378fe02e36e4c666a357daf3507b4770d4ad37e226115b7409
00x1a4f8705e1c0428d020e1558a371b7e6134455a20x258d9aef9184d9e21f9b882e243c42fac1466a59false107713536484759136337341143305652022-03-06T02:09:23.000Z0xc17524bd7ae01c43380f1be1be57f6900f6a91fa594fe569ecfa9c8c9d8c93ef
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.Mine_Claim_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

PrivatePool_DODOSwap_event

DODOSwap event logs from DODO v2 private pool contracts recording token exchanges. Contains trader address, source and destination token addresses with amounts, and receiver address for tracking decentralized exchange swaps.
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_fromTokenSTRINGContract address of the source token being swapped. Hex-encoded, 0x-prefixed, 42-character string.
in_toTokenSTRINGContract address of the destination token being received in the swap. Hex-encoded, 0x-prefixed, 42-character string.
in_fromAmountSTRINGAmount of tokens being swapped from the source token. String-encoded integer value representing the quantity in the smallest unit of the token.
in_toAmountSTRINGAmount of tokens received from the swap to the destination token. String-encoded integer value representing the quantity in the smallest unit of the token.
in_traderSTRINGAddress that initiated or executed the trade transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_receiverSTRINGAddress that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_traderlog_indexin_toTokenin_receiverin_toAmountblock_numberin_fromTokenin_fromAmountblock_timestamptransaction_hash
0x9efe8abd830f1d2062fdcc38f53349db008fe7dcfalse0x3208684f96458c540eb08f6f01b9e9afb2b7d4f01410xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20x3208684f96458c540eb08f6f01b9e9afb2b7d4f047102857718389023181453870x112b08621e27e10773ec95d250604a041f36c5821558534727252023-09-16T01:14:35.000Z0x3db4cdb1690b107fdca1801762bfbe7c61ca5e5dc8f4585e331542a41d9a736e
0x9efe8abd830f1d2062fdcc38f53349db008fe7dcfalse0x3208684f96458c540eb08f6f01b9e9afb2b7d4f0810x112b08621e27e10773ec95d250604a041f36c5820x1111111254eeb25477b68fb85ed929f73a960582115389032052181472120xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2346937500000000002023-09-16T07:23:47.000Z0x896ecf9ecbc49c5162b582f35bc526ba4c7638ccd3f023b27d3e1f18d9004bec
0x32a4425b0246100a526fc94865620e00af05ae2ffalse0xdb38ae75c5f44276803345f7f02e95a0aeef5944640xca0e7269600d353f70b14ad118a49575455c0f2f0xdb38ae75c5f44276803345f7f02e95a0aeef594437702804752177750497085122721410xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb4830168278852021-04-19T18:35:55.000Z0x3b5974277f5c1d1c25bca17384866577125ef7076abd27aa1a326594059e401b
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.PrivatePool_DODOSwap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

PrivatePool_LpFeeRateChange_event

Liquidity provider (LP) fee rate adjustment events emitted by DODO V2 private pool contracts. Captures new fee rate values applied to LP positions within private pools for fee structure 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_newLpFeeRateSTRINGNew liquidity provider fee rate set by the pool update. String-encoded integer representing the fee rate in basis points or wei-denominated fractional units.
addressremovedlog_indexblock_numberblock_timestampin_newLpFeeRatetransaction_hash
0x2c22477cf2cd255d0a6cbddb4675453248bdf466false268160980792022-12-02T15:40:23.000Z00xc3e64aebdc946aac1a4771949fda6f72e0cfd3a431fcdacbabe17eebcc5da24c
0xd53dd744d09bf92d5f9ee2fbd39f0e23204c3b6efalse127160970562022-12-02T12:14:47.000Z00xde2c7017c5b58c629bb13adf204daa34adf62fb97cd47723e3be099eee77ca78
0x6e94fddbb7ab473fbf684f882a7a1a5e042b481cfalse71133161692021-09-28T19:34:29.000Z24000000000000000xa01cc7aa5bae262a1a11d4ae61a85304b1af6c7e4dde7fafc7103c5302dd3cba
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.PrivatePool_LpFeeRateChange_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

PrivatePoolFactory_createDODOPrivatePool_function

Private pool deployment transactions from DODO v2’s PrivatePoolFactory contract on Ethereum, capturing creator addresses and newly created pool contract addresses. Used for tracking DODO private pool creation activity and analyzing liquidity provisioning 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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
out_newPrivatePoolSTRINGContract address of the newly created DODO private pool deployed by this factory function call. Hex-encoded, 0x-prefixed 40-character Ethereum address uniquely identifying each pool instance.
gasvaluestatusgas_usedsignatureto_addressblock_numberfrom_addresstrace_addressblock_timestamptransaction_hashout_newPrivatePool
6604850true470020x09b8adb80x5336ede8f971339f6c0e304c66ba16f1296a2fbe165656540xff7c8f518e6f1435957ed3d3e0692c94676dae7a02023-02-05T22:45:47.000Z0x1d18f99bbcb3597f3e16b1427b2e65c028b6ba131808ea69e58e251cb6c8f12b0xf8073b40e05ef0b6d60cd13e865ad651d54ad602
6452430true470060x09b8adb80x5336ede8f971339f6c0e304c66ba16f1296a2fbe232062920xff7c8f518e6f1435957ed3d3e0692c94676dae7a02025-08-23T20:52:35.000Z0x087d91f3fdaf92894af14c2c464674da0edcc53aae8f2ff4b8c4bd3950e49e830xb23c9f37514211ed361a215bad43663778f6923a
8496040true470060x09b8adb80x5336ede8f971339f6c0e304c66ba16f1296a2fbe218812000xff7c8f518e6f1435957ed3d3e0692c94676dae7a02025-02-19T15:06:23.000Z0x86b4e387304e8253f228edaf0f3e1140d16445dae7c2334f6e1ff2538d05aca00x335f2c13dc0656a29d38d17dd010a44b1121617c
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.PrivatePoolFactory_createDODOPrivatePool_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

PrivatePoolFactory_NewDPP_event

DODO V2 private pool creation events emitted when a new DPP (DODO Private Pool) is deployed via the PrivatePoolFactory contract. Records pool creator address, base/quote token pair, and deployed pool contract address for tracking custom liquidity pool instantiation.
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_baseTokenSTRINGContract address of the base token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_quoteTokenSTRINGContract address of the quote token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_creatorSTRINGAddress of the account that initiated the creation event. Hex-encoded, 0x-prefixed, 42-character string.
in_dppSTRINGContract address of the DODO Private Pool (DPP) created by the factory. Hex-encoded, 0x-prefixed, 42-character string.
in_dppaddressremovedlog_indexin_creatorblock_numberin_baseTokenin_quoteTokenblock_timestamptransaction_hash
0x23caccbb8c2509a88a32c48b7a903d3d779f31870x5336ede8f971339f6c0e304c66ba16f1296a2fbefalse2830x2bfd8833dce4a1fdbe6aa4f132f0e412cf001c7f175389430xdac17f958d2ee523a2206206994597c13d831ec70x905f06debcd355809c0eabe2abc1332a5c7159cd2023-06-23T01:13:23.000Z0x5dec34ca9d042e377bdb4f48d4ae7a1caa1d6b5b6ca755df644445dc5944607e
0xf8073b40e05ef0b6d60cd13e865ad651d54ad6020x5336ede8f971339f6c0e304c66ba16f1296a2fbefalse2170x69283ff7a80868ebdf5d38ef5a6bc37e7bfbac5f165656540xdac17f958d2ee523a2206206994597c13d831ec70xe346c1d7d4a36e4a79f91401d1d18e0c454edda02023-02-05T22:45:47.000Z0x1d18f99bbcb3597f3e16b1427b2e65c028b6ba131808ea69e58e251cb6c8f12b
0xa224f2e653f22145599f46f2368e1acdbec9b9410x5336ede8f971339f6c0e304c66ba16f1296a2fbefalse1530x4461d605a73f4f0ea2d52b89c8b36ec78d7f56fd156526940xdac17f958d2ee523a2206206994597c13d831ec70xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb482022-10-01T10:24:11.000Z0xf84c8971cc440419e0cfd2137167417541a371d371a572e668cbd3e2b87f557c
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.PrivatePoolFactory_NewDPP_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

RouteProxy_OrderHistory_event

Order execution records from DODO V2’s RouteProxy contract on Ethereum, capturing token swaps with input/output amounts and token addresses. Used for analyzing DEX trading volume, token pair liquidity routing, and user swap behavior.
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_fromTokenSTRINGContract address of the source token being swapped. Hex-encoded, 0x-prefixed, 42-character string.
in_toTokenSTRINGContract address of the destination token being received in the swap. Hex-encoded, 0x-prefixed, 42-character string.
in_senderSTRINGAddress that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_fromAmountSTRINGAmount of tokens being swapped from the source token. String-encoded integer value representing the quantity in the smallest unit of the token.
in_returnAmountSTRINGActual amount of destination tokens received from the swap. Numeric string representation of token quantity in smallest denomination.
addressremovedin_senderlog_indexin_toTokenblock_numberin_fromTokenin_fromAmountblock_timestampin_returnAmounttransaction_hash
0xa2398842f37465f89540430bdc00219fa9e4d28afalse0x87013f055b698337d5abc3dd695dc89637f445141660x090185f2135308bad17527004364ebcc2d37e5f6132202730xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1959308859435241522021-09-13T23:09:59.000Z4995553117308635045192040xdc57a8f7c509b56591205a329cdd7e6ab23ddf555838ba882285887570c4fe1c
0xa2398842f37465f89540430bdc00219fa9e4d28afalse0x87013f055b698337d5abc3dd695dc89637f445141430x090185f2135308bad17527004364ebcc2d37e5f6132203680xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee800000000000000002021-09-13T23:30:43.000Z2024163502995368414889280x2faf26ef84bfd090a0ce092941ea0c8648dd4e2cb7ccfd22acf080694d553402
0xa2398842f37465f89540430bdc00219fa9e4d28afalse0x9f0e54570933ebf5f9ee496c09cde54ba4cfefc93470x090185f2135308bad17527004364ebcc2d37e5f6132140870xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee300000000000000002021-09-13T00:02:47.000Z827299380868358696463130xeb35e1a866b6d0031c6f723c5b66d45fab2a76492c51f4a2b1eb4fd6b7a912ed
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.RouteProxy_OrderHistory_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StablePool_DODOSwap_event

Token swap events emitted by DODO StablePool contracts containing trader address, source and destination token addresses, input and output amounts, and receiver address. Used for tracking stableswap trades and liquidity pool activity across DODO’s decentralized exchange protocol.
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_fromTokenSTRINGContract address of the source token being swapped. Hex-encoded, 0x-prefixed, 42-character string.
in_toTokenSTRINGContract address of the destination token being received in the swap. Hex-encoded, 0x-prefixed, 42-character string.
in_fromAmountSTRINGAmount of tokens being swapped from the source token. String-encoded integer value representing the quantity in the smallest unit of the token.
in_toAmountSTRINGAmount of tokens received from the swap to the destination token. String-encoded integer value representing the quantity in the smallest unit of the token.
in_traderSTRINGAddress that initiated or executed the trade transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_receiverSTRINGAddress that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_traderlog_indexin_toTokenin_receiverin_toAmountblock_numberin_fromTokenin_fromAmountblock_timestamptransaction_hash
0x3058ef90929cb8180174d74c507176cca6835d73false0x1136b25047e142fa3018184793aec68fbb173ce42650xdac17f958d2ee523a2206206994597c13d831ec70x1136b25047e142fa3018184793aec68fbb173ce4101098974886174026490x6b175474e89094c44da98b954eedeac495271d0f1011332485171314970821182023-06-03T20:55:23.000Z0x0fb259ca88dbed8856072a0b724a269edbecb01a578ac3a1f0cdeeee5fd528c7
0x3058ef90929cb8180174d74c507176cca6835d73false0x23ebcd701fd92867235aeb0174b7c444b9b2b3ad800xdac17f958d2ee523a2206206994597c13d831ec70x23ebcd701fd92867235aeb0174b7c444b9b2b3ad9780844415174003720x6b175474e89094c44da98b954eedeac495271d0f97836328887914899423662023-06-03T13:11:35.000Z0xfb12cbb5405d50957fa0f46bf04fb9a447346c8356de6f94474848acfb1193c6
0x3058ef90929cb8180174d74c507176cca6835d73false0x56bd269db96a089295d742351ba459fb0c279fe21580xdac17f958d2ee523a2206206994597c13d831ec70x3b3ae790df4f312e745d270119c6052904fb679011312363563174003810x6b175474e89094c44da98b954eedeac495271d0f114297443326521216548282023-06-03T13:13:23.000Z0xeb87c7f74f55bd5b278b2c039022502a8d315fef659929eed4ef735e109f9e81
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.StablePool_DODOSwap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StablePoolFactory_createDODOStablePool_function

Function call records for creating DODO v2 stable pools with base/quote token pairs, liquidity provider fee rates, and price curve parameters (k, i). Returns the deployed stable pool contract address for tracking new pool deployments on the DODO decentralized exchange.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_baseTokenSTRINGContract address of the base token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_quoteTokenSTRINGContract address of the quote token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_lpFeeRateSTRINGLiquidity provider fee rate charged on trades in the pool. Numeric string representing the fee as a fraction with 18 decimal places.
in_iSTRINGIndex or identifier parameter used in protocol operations. Numeric string representing a position, rate, or configuration value.
in_kSTRINGK parameter controlling price curve slope in DODO protocol pools. Numeric string representing the slippage coefficient where higher values indicate steeper bonding curves.
in_isOpenTWAPBOOLBoolean flag indicating whether Time-Weighted Average Price (TWAP) oracle is enabled for the pool.
out_newStablePoolSTRINGContract address of the newly created stable pool. Hex-encoded, 0x-prefixed, 42-character string.
gasin_iin_kvaluestatusgas_usedsignatureto_addressblock_numberfrom_addressin_baseTokenin_lpFeeRatein_isOpenTWAPin_quoteTokentrace_addressblock_timestamptransaction_hashout_newStablePool
5965938500000000000020000000000000000true3623040xcf5c2f100x6fddb76c93299d985f4d3fc7ac468f9a168577a4190601190x4599ed18f34cfe06820e3684bf0aacb8d75c644d0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc224000000000000000false0x15d4c048f83bd7e37d49ea4c83a07267ec4203da02024-01-22T05:11:35.000Z0x982d7d22554c8f823274c2522a759ae49835c758e101d68a2ca16568723d58bc0xb0c9cba2c8fc298c7e0a915ba6273a8ad250b10b
596593840950383157711000000000000000true3623040xcf5c2f100x6fddb76c93299d985f4d3fc7ac468f9a168577a4190644550x4599ed18f34cfe06820e3684bf0aacb8d75c644d0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc248000000000000000false0x15d4c048f83bd7e37d49ea4c83a07267ec4203da02024-01-22T19:52:59.000Z0xa1df2cbd185cba2ddadcfc25c0955ae85e9beb8944cd393ee6923e830c7c8ef00xe1bc99fd2a8e5a05e9fb0b8086f3bb58f7d1a5b3
6596111250000000000000000000001000000000000000000true3965040xcf5c2f100x6fddb76c93299d985f4d3fc7ac468f9a168577a4220152420x5245f5e66792cfbacb64efaef3121e7c5ccd879b0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc280000000000000000false0xed328e9c1179a30ddc1e7595e036aed8760c22af02025-03-10T08:20:47.000Z0xe0a488db7ad37c7b9cd54fcf3d4be6ef738eb72c9ab84146a3b3bad3d2810ffd0xeaf51b028f209e65f4ca06c463d280ca520e1754
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.StablePoolFactory_createDODOStablePool_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

StablePoolFactory_NewDSP_event

DODO v2 StablePoolFactory event emitted when a new DSP (DODO Stable Pool) is created, containing the deployed pool contract address, base and quote token addresses, and creator address. Used for tracking stable swap pool deployments across DODO DEX instances.
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_baseTokenSTRINGContract address of the base token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_quoteTokenSTRINGContract address of the quote token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_creatorSTRINGAddress of the account that initiated the creation event. Hex-encoded, 0x-prefixed, 42-character string.
in_DSPSTRINGContract address of the DODO Stable Pool (DSP) created by the factory. Hex-encoded, 0x-prefixed, 42-character string.
in_DSPaddressremovedlog_indexin_creatorblock_numberin_baseTokenin_quoteTokenblock_timestamptransaction_hash
0xaa89cab926dcd65b3779aa98d9342fd9a21e5d1c0x6fddb76c93299d985f4d3fc7ac468f9a168577a4false3130x16cc37d06fe5061cd0023fb8d142abaabb396a2b135289550xca37530e7c5968627be470081d1c993eb1deaf900xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb482021-11-01T04:00:51.000Z0x76f37b2a5fcd4b99c9f5ad4c5e3a4f861c6f0ae006dbe27735302ffab18ae712
0x5fd666a28c7e8f36c43ea3df31aeb3f69054b99e0x6fddb76c93299d985f4d3fc7ac468f9a168577a4false5990x16cc37d06fe5061cd0023fb8d142abaabb396a2b135287470xca37530e7c5968627be470081d1c993eb1deaf900xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb482021-11-01T03:15:10.000Z0x66bbf8073b7c5a208f9900ca7a5541284b0bd663f3dfabd9bf7f6f6dd51a8fb5
0x6d0806dfa6ab5bf8e96defa42244b3ce9f62e9200x6fddb76c93299d985f4d3fc7ac468f9a168577a4false790xc87074b6f694bda13b565db9eb7269ad53acd39a126054520xdef5ac7f333017de75cc9d8f75f46cf678a795a90xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc22021-06-10T07:35:52.000Z0xf93f23fcf13f306d4e07660320b479d7d618e4b3e21010541babeb3675031418
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.StablePoolFactory_NewDSP_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

VendingMachine_DODOSwap_event

DODOSwap token swap events from DODO V2 vending machine contracts containing trader address, source and destination token addresses, swap amounts, and recipient. Used for DEX trade volume analysis and liquidity tracking across token 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_fromTokenSTRINGContract address of the source token being swapped. Hex-encoded, 0x-prefixed, 42-character string.
in_toTokenSTRINGContract address of the destination token being received in the swap. Hex-encoded, 0x-prefixed, 42-character string.
in_fromAmountSTRINGAmount of tokens being swapped from the source token. String-encoded integer value representing the quantity in the smallest unit of the token.
in_toAmountSTRINGAmount of tokens received from the swap to the destination token. String-encoded integer value representing the quantity in the smallest unit of the token.
in_traderSTRINGAddress that initiated or executed the trade transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_receiverSTRINGAddress that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_traderlog_indexin_toTokenin_receiverin_toAmountblock_numberin_fromTokenin_fromAmountblock_timestamptransaction_hash
0x22591994bc89174a5bdcec57c82c881b65f9b121false0xa0df3428ce64a481e3e4c791b64ad9c02b0c8518270xd502f487e1841fdc805130e13eae80c61186bc980x0120b5473cc9b28321a8f6e712cb5b4d2df32b3122849027306074644926132144831310xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb4823600852442022-03-29T19:56:42.000Z0x3dd96a0590aed4c726aedb7ef9bd537d65dfb987a435a308079bd6ce9c861137
0xc8d5a3c04b99f8511435f2aa4d7215508154a7a9false0x2057cfb9fd11837d61b294d514c5bd03e5e7189a780x903bef1736cddf2a537176cf3c64579c3867a8810x1111111254fb6c44bac0bed2854e76f90643097d35775880807144818160xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc27631966743719423692022-03-29T15:07:40.000Z0x6793e18c49ea5ec95835e027d4ee28f94ca16f5ab5b6ec66ef265299f78a02c8
0x22591994bc89174a5bdcec57c82c881b65f9b121false0x220bda5c8994804ac96ebe4df184d25e5c2196d4700xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb480x1111111254fb6c44bac0bed2854e76f90643097d7107850861144840180xd502f487e1841fdc805130e13eae80c61186bc98678781792580000000000002022-03-29T23:12:36.000Z0x0d4b6775a0c2b130b5d17f9e83f0039fba767659aa9d9b4e46703fe59f991638
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.VendingMachine_DODOSwap_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

VendingMachineFactory_createDODOVendingMachine_function

Factory function calls for creating DODO V2 vending machine liquidity pools. Records pool deployment parameters including base/quote token pairs, pricing curve configuration (k parameter), LP fee rates, and TWAP oracle settings, returning the deployed pool contract address.
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.
trace_addressSTRINGHierarchical position of the internal call within a transaction’s execution trace. Comma-separated sequence of integers representing the call path, where each number indicates the index of the call at that nesting level, with null representing top-level calls.
statusBOOLTransaction execution outcome indicator. Boolean value where true represents successful execution and false represents failed execution.
from_addressSTRINGAddress that initiated the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
to_addressSTRINGAddress receiving the transaction or contract call. Hex-encoded, 0x-prefixed, 42-character string.
valueFLOAT64Amount of native cryptocurrency sent with the transaction. Floating-point representation in whole units (e.g., ETH, BNB, MATIC).
gas_usedINT64Amount of gas consumed by the transaction execution. Integer representing the actual computational steps used.
gasINT64Gas limit allocated for the transaction execution. Integer representing the maximum computational steps allowed.
signatureSTRINGFunction selector identifying which contract function was called. 10-character hex string including 0x prefix.
in_baseTokenSTRINGContract address of the base token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_quoteTokenSTRINGContract address of the quote token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_lpFeeRateSTRINGLiquidity provider fee rate charged on trades in the pool. Numeric string representing the fee as a fraction with 18 decimal places.
in_iSTRINGIndex or identifier parameter used in protocol operations. Numeric string representing a position, rate, or configuration value.
in_kSTRINGK parameter controlling price curve slope in DODO protocol pools. Numeric string representing the slippage coefficient where higher values indicate steeper bonding curves.
in_isOpenTWAPBOOLBoolean flag indicating whether Time-Weighted Average Price (TWAP) oracle is enabled for the pool.
out_newVendingMachineSTRINGContract address of the newly created DODO vending machine pool. Hex-encoded, 0x-prefixed, 42-character string.
gasin_iin_kvaluestatusgas_usedsignatureto_addressblock_numberfrom_addressin_baseTokenin_lpFeeRatein_isOpenTWAPin_quoteTokentrace_addressblock_timestamptransaction_hashout_newVendingMachine
60581114700000000000000500000000000000000true3866560xe18c40c70x72d220ce168c4f361dd4dee5d826a01ad8598f6c205094650xa356867fdcea8e71aeaf87805808803806231fdc0x2f7b618993cc3848d6c7ed9cdd5e835e4fe22b982400000000000000false0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc202024-08-12T02:10:35.000Z0x23803d7fc4ba2e9779a9cc19715c45f2d62e0ec64375ed4ff6f0d661edb57fec0xc675b21b9aaac783e53fcd63a0bab3e42784c947
590488147258369000000000000000000500000000000000000true3794680xe18c40c70x72d220ce168c4f361dd4dee5d826a01ad8598f6c205093430xa356867fdcea8e71aeaf87805808803806231fdc0xfca47962d45adfdfd1ab2d972315db4ce7ccf0942400000000000000false0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc202024-08-12T01:46:11.000Z0x757a834b9088ed2414c9447189d59a3a8b748b056c455c915527665a07d9665e0x69a35050982d11e9968fa38a825f205bc634343c
6076873690000000000000500000000000000000true3965190xe18c40c70x72d220ce168c4f361dd4dee5d826a01ad8598f6c205092780xa356867fdcea8e71aeaf87805808803806231fdc0x16b0a1a87ae8af5c792fabc429c4fe248834842b2400000000000000false0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc202024-08-12T01:33:11.000Z0xf9a29ddb3a92be0d3dc05213d78b84e3d3d5dda4504c0ae5553b123b23b4ea5e0x2c89bf4e9896ab9500351d8c17fd718831b8b2e2
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.VendingMachineFactory_createDODOVendingMachine_function`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

VendingMachineFactory_NewDVM_event

DODO Vending Machine (DVM) liquidity pool creation events emitted when a new trading pair is deployed. Records creator address, base/quote token addresses, and deployed DVM contract address for tracking pool deployments across DODO V2 exchanges.
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_baseTokenSTRINGContract address of the base token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_quoteTokenSTRINGContract address of the quote token in a trading pair. Hex-encoded, 0x-prefixed, 42-character string.
in_creatorSTRINGAddress of the account that initiated the creation event. Hex-encoded, 0x-prefixed, 42-character string.
in_dvmSTRINGContract address of the DVM (DODO Vending Machine) pool created by the factory. Hex-encoded, 0x-prefixed, 42-character string.
in_dvmaddressremovedlog_indexin_creatorblock_numberin_baseTokenin_quoteTokenblock_timestamptransaction_hash
0xef5d36cff77ed9ac8b59544e8108bddca0f5f7740x72d220ce168c4f361dd4dee5d826a01ad8598f6cfalse4330xaf1e094df4b9f2ee00797a9c1d0d31b8a09333fd124561550xe31861a693b6fc14b7ef8da8e1ae3edeb4e278450xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc22021-05-18T04:13:43.000Z0x9121a2785714a9204151126471fe8befaa7e6ecb887794ec88d4e3256bae4e2e
0x7af1d714645548d0190c0d85afd7d33bd2d61e930x72d220ce168c4f361dd4dee5d826a01ad8598f6cfalse2370xaab474702cee4dc0784d8091fe1cc139d5389214176375410xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20x32b86b99441480a7e5bd3a26c124ec2373e3f0152023-07-06T21:41:35.000Z0xefd4cbb2656ae93d50a6647086f80707b6ab542a019608060ca1c7c5c0a0ba18
0xd7702549918a57ff296ea5236870c66801319c140x72d220ce168c4f361dd4dee5d826a01ad8598f6cfalse2450xa23f148c5733ff213f7608cd3288b933a4467211183498410xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc20x485d17a6f1b8780392d53d64751824253011a2602023-10-14T16:34:11.000Z0xdb3b8661abf5a5195d3fe1f9e3830914c56a852032a8b34c3d4ddd20c4fd4daf
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_ethereum.VendingMachineFactory_NewDVM_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100