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
00x38dbb42c4972116c88e27edfacd2451cf1b142550x03d45ed1f865e52af716deda00734795ab617f4bfalse1981228604652094150412715572021-09-04T09:25:16.000Z0x99ca54c0246c4eee5ce327d8d3313d885f4002027dfe208b5072056ea2045154
00x38dbb42c4972116c88e27edfacd2451cf1b142550x0abc081c9afbe045b4605bd1bbc85fa879f7d0d0false1837783969738383427712690022021-09-04T01:14:54.000Z0x0778ac73c3753ba41078e13d5472f52085748e7a9829b6fd91634a440dbcac9d
00x38dbb42c4972116c88e27edfacd2451cf1b142550x0abc081c9afbe045b4605bd1bbc85fa879f7d0d0false830818395419007335212716452021-09-04T09:46:36.000Z0x15900c22e2802202fe592ad61e575d74082ac9cabfcd03138a39115daf050407
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_arbitrum.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
0x4c93609ba98675be8705383d9736f43c045460effalse0x8ab2d334ce64b50be9ab04184f7ccba2a6bb6391100xff970a61a04b1ca14834a43f5de4533ebddb5cc80xbce44767af0a53a108b3b7ba4f740e03d228ec0a105643868785350x82af49447d8a07e3bd95bd0d56f35241523fbab1551051566244412023-05-03T13:22:31.000Z0x4a8b1c0a9f7b752a93366127fdcbee4b486ed33b506c15950d8f3d09d5e797be
0x4c93609ba98675be8705383d9736f43c045460effalse0x8ab2d334ce64b50be9ab04184f7ccba2a6bb6391210xff970a61a04b1ca14834a43f5de4533ebddb5cc80x6a58c68ff5c4e4d90eb6561449cc74a64f818da5177427869141970x82af49447d8a07e3bd95bd0d56f35241523fbab1944525947138582023-05-03T15:50:47.000Z0xbdc498131b7062689809a2c966785785fc908e895be4878a6ccb0401a84fc232
0x8f11519f4f7c498e1f940b9de187d9c390321016false0x8ab2d334ce64b50be9ab04184f7ccba2a6bb6391180x82af49447d8a07e3bd95bd0d56f35241523fbab10x3b6067d4caa8a14c63fdbe6318f27a0bbc9f923726310212671271869141970xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9485502023-05-03T15:50:47.000Z0xbdc498131b7062689809a2c966785785fc908e895be4878a6ccb0401a84fc232
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_arbitrum.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
0x1666ea6e83bcc3473111732ef086ba47e6eddeb7false792403875102024-08-07T13:25:28.000Z10000000000000000000x92420ff95c1459af16463d2fe7fc809751cedff01ead62ba99e82ec9be6b2bee
0x869f51989bbe4a49a03daf49ec57572fccef3b81false372403875112024-08-07T13:25:28.000Z10000000000000000000x2acc5fe82e030818dc7d52ce24a666b103a91bc7d3daf4c3f5cc4acf758da6e6
0x716aa091d30a88a3e1874d56e99fbf1487cbc65afalse382403875112024-08-07T13:25:28.000Z10000000000000000000x3ddf744175669963c28dd87291d64e82a89c1e6334500d2ef9ae5889a777e133
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_arbitrum.PrivatePool_LpFeeRateChange_event`
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
0x09caee5f8e2c24b09c48fea8ff802ae2af7490f60xa6cf3d163358af376ec5e8b7cc5e102a05fde63dfalse340xc72ed51dbb7acf64871ab3eb2770870093d66b5f854070490x82af49447d8a07e3bd95bd0d56f35241523fbab10x390609e6e1e75743c882331d65a9f523c48f50e92023-04-29T05:47:31.000Z0x20e61b070d4d642390eb308229a61502330a1fd9b2407ecfbe8a8c70b74a402f
0x95e5b46b4d350b2688d27d5a57cb43456a6970650xa6cf3d163358af376ec5e8b7cc5e102a05fde63dfalse80x968cd825522c50a9e1d393a546e560e49940d8e22336517980xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb90xff970a61a04b1ca14834a43f5de4533ebddb5cc82024-07-18T23:41:30.000Z0x3cd8270956521f7578d548304fbd403a92c14769884ba3bddc93e45ae1ad8aee
0xa9733980d009578ba51cd100d75b7e6be48506910xa6cf3d163358af376ec5e8b7cc5e102a05fde63dfalse300xcd152b4450acbfdd3bc1541514a624f5da45b5df2334635820xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb90xff970a61a04b1ca14834a43f5de4533ebddb5cc82024-07-18T10:31:51.000Z0x73b6b45ada0a7951622ff64e3d5f585aa1ace65df0a60d0ca27828fa5fd841c8
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_arbitrum.PrivatePoolFactory_NewDPP_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
0xe6cecb7460c9e52aa483cb1f0e87d78d7085686ffalse0x00000000cfe3369bcdbc76071ba6e0a4e0fe98bd30x82af49447d8a07e3bd95bd0d56f35241523fbab10x00000000cfe3369bcdbc76071ba6e0a4e0fe98bd601798809138558782586672560x2416092f143378750bb29b79ed961ab195cceea5591020367935176842024-09-29T18:44:55.000Z0x99aa4fd670b4e9f84b03f9ee688ec0ac19986d3a69d92d9b0bdc0f19c83dcda0
0xe6cecb7460c9e52aa483cb1f0e87d78d7085686ffalse0x00000000cfe3369bcdbc76071ba6e0a4e0fe98bd90x82af49447d8a07e3bd95bd0d56f35241523fbab10x00000000cfe3369bcdbc76071ba6e0a4e0fe98bd321769049851890512586542000x2416092f143378750bb29b79ed961ab195cceea5315778600498230272024-09-29T17:49:58.000Z0x0437d954285002f0d393f9d5fcbb28d06eb358b99d5ab6296432f15f28f4bfb0
0x3a7bc5f9e41356728f037f17d88c642ee46d1aaafalse0x00000000cfe3369bcdbc76071ba6e0a4e0fe98bd280x82af49447d8a07e3bd95bd0d56f35241523fbab10x00000000cfe3369bcdbc76071ba6e0a4e0fe98bd1041931952130440142587372350x35751007a407ca6feffe80b3cb397736d2cf4dbe997201819545962172024-09-29T23:40:52.000Z0x4c823826f24912242d94674f08c419be6c41f4a0e2fc479021929ba796de011e
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_arbitrum.StablePool_DODOSwap_event`
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
0x798be01888b06b9c6d4d74e4d4cbb8019645a57c0xc8fe2440744dcd733246a4db14093664defd5a53false310x12d23991bd8a25333036cf41f44af6894f2ca61c2331918010xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb90xff970a61a04b1ca14834a43f5de4533ebddb5cc82024-07-17T15:19:14.000Z0x4bd13bfa6fb284bdaba3324acf151be10594396d2cbb720f3c7ebd9321e71683
0xc1649de4ca3247a15835f41a38db28d1d737f5e70xc8fe2440744dcd733246a4db14093664defd5a53false20xd7016d27964e7a32a60c5c1d9b751bde39596b9a2332599690xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb90xff970a61a04b1ca14834a43f5de4533ebddb5cc82024-07-17T20:04:03.000Z0x7319dc94ca93ebd2f54cd56c5c28e31c675737406e3d6a53234f85066ef8f7df
0x8d80b391f87768310992e7e616899489fd23e1ff0xc8fe2440744dcd733246a4db14093664defd5a53false20x17f80ece5b9b56ef9122c4fce4ad65af8342c41b2333147030xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb90xff970a61a04b1ca14834a43f5de4533ebddb5cc82024-07-17T23:53:01.000Z0x197f551b5234331141dd6811b372c438e12bddad8bc4af0cc976d61162eb4a74
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_arbitrum.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
0x6a58c68ff5c4e4d90eb6561449cc74a64f818da5false0x0aacc6124269f9591a5fcb33d34654918c151221290x69eb4fa4a2fbd498c257c57ea8b7655a2559a5810x1087a3254c35a7809cd6112422ea195ecda6e99313621399676902058336822670120xff970a61a04b1ca14834a43f5de4533ebddb5cc823330962023-04-20T00:59:19.000Z0x8b3fd60c3716415ec43463efb5da8c948f5ef7c6da601fc03a1265d335ca6cb8
0x6a58c68ff5c4e4d90eb6561449cc74a64f818da5false0x0aacc6124269f9591a5fcb33d34654918c151221450x69eb4fa4a2fbd498c257c57ea8b7655a2559a5810x1087a3254c35a7809cd6112422ea195ecda6e99320038540272227156703825728280xff970a61a04b1ca14834a43f5de4533ebddb5cc832394692023-04-20T22:14:15.000Z0x8e6259963fe73adb116e44fc576b028937879c713477d1039f2df3a05b001465
0x34851ea13bde818b1efe26d31377906b47c9bbe2false0x0aacc6124269f9591a5fcb33d34654918c151221220x4e352cf164e64adcbad318c3a1e222e9eba4ce420x0aacc6124269f9591a5fcb33d34654918c15122113481404508221159247823998550xff970a61a04b1ca14834a43f5de4533ebddb5cc81966329572023-04-20T10:15:49.000Z0x16c6e9cf8fe8bb959a726511eaf818d7f554b2177d4564fbc805bd0889765207
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_arbitrum.VendingMachine_DODOSwap_event`
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
0x78c73272e4657d1d7dc17dd334f04b40b6db53fc0xda4c4411c55b0785e501332354a036c04833b72bfalse60x13add9bf8f578647432925e4f449aee7d81fadfc1235813100x97927626b089eb1de1f7f85ece3ee022d74324540x82af49447d8a07e3bd95bd0d56f35241523fbab12023-08-21T14:57:10.000Z0x1fbb45f4bea9e166482e568c36bb2987c75447da7a720655c1fa6f71f405f57b
0xf26c525c3eada8ed9ebffc7045f3a571961b547a0xda4c4411c55b0785e501332354a036c04833b72bfalse00x597dc4159a4b85c086c3c679a0b6c8fe2836886f1472019360x82af49447d8a07e3bd95bd0d56f35241523fbab10xff970a61a04b1ca14834a43f5de4533ebddb5cc82023-11-04T23:50:48.000Z0x9ef979d3366a968b33fe99e3733fcc11e975c597e61823fdb7142790d8525f70
0xdb1bc79542d5ca6504b42286b238032e7c8d9c150xda4c4411c55b0785e501332354a036c04833b72bfalse20x8eda0bd868eb10604e9f773edb8fb0cf25c8a3d62708123480xaf88d065e77c8cc2239327c5edb3a432268e58310xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb92024-11-04T03:19:23.000Z0x5b45347ce199290e783079dd3f40fc377a111fc3c594ab15c28be36e5911b4df
Query with partition filter
SELECT *
FROM `tt-contracts.dodo_v2_arbitrum.VendingMachineFactory_NewDVM_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100