Skip to main content

Tables

DolomiteMargin_LogAddMarket_event

Event log emitted when a new market is added to the Dolomite margin protocol, recording the assigned market identifier and token address. Used for tracking market availability and supported assets across Dolomite deployments.
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_marketIdSTRINGUnique identifier for a market within the Dolomite protocol. String representation of a non-negative integer starting from 0.
in_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedin_tokenlog_indexin_marketIdblock_numberblock_timestamptransaction_hash
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse0xcccc62962d17b8914c62d74ffb843d73b2a3cccc38214233473872025-09-12T13:48:59.000Z0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db08
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse0x88887be419578051ff9f4eb6c858a951921d888839115233473872025-09-12T13:48:59.000Z0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db08
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse0xda5e1988097297dcdc1f90d4dfe7909e847cbef618113232689952025-09-01T14:51:11.000Z0x5db7b66ca451e7af3d526a5d7aa089336863802273b83c11a630eb6548e9c9f1
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogAddMarket_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogBuy_event

No description available.
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_accountOwnerSTRINGOwner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_accountNumberSTRINGAccount identifier associated with the owner’s position in the Dolomite protocol. Numeric string representing a unique sub-account within the user’s address space.
in_takerMarketSTRINGMarket identifier for the token sold in the swap. Numeric string representing the Dolomite protocol’s internal market ID.
in_makerMarketSTRINGMarket identifier for the token received in the swap. Numeric string representing the Dolomite protocol’s internal market ID.
in_takerUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the taker market position in the Dolomite protocol. Contains deltaWei (balance change) and newPar (principal balance after update), each with a sign indicating positive or negative value and a numeric string value.
in_makerUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the maker market position in the Dolomite protocol. Contains deltaWei (balance change) and newPar (principal balance after update), each with a sign indicating positive or negative value and a numeric string value.
in_exchangeWrapperSTRINGContract address of the exchange wrapper used to facilitate the token swap in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogBuy_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogCall_event

Event log emitted when an external contract call is executed within a Dolomite Margin account operation. Contains the account owner, sub-account number, and callee address for tracking protocol interactions and external integrations.
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_accountOwnerSTRINGOwner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_accountNumberSTRINGAccount identifier associated with the owner’s position in the Dolomite protocol. Numeric string representing a unique sub-account within the user’s address space.
in_calleeSTRINGContract address of the callee invoked in the Dolomite protocol operation. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogCall_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogDeposit_event

Deposit events emitted by the DolomiteMargin protocol recording account collateral additions. Contains account owner, market identifier, depositor address, and balance changes including the Wei delta and updated principal balance with sign indicators.
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_accountOwnerSTRINGOwner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_accountNumberSTRINGAccount identifier associated with the owner’s position in the Dolomite protocol. Numeric string representing a unique sub-account within the user’s address space.
in_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_updateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Account balance update containing the change in Wei (deltaWei) and the new principal balance (newPar). Each component includes a boolean sign indicator and a numeric string value representing the amount.
in_fromSTRINGAddress originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string.
addressin_fromremovedin_marketin_updatelog_indexblock_numberblock_timestampin_accountOwnerin_accountNumbertransaction_hash
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dfffalse0{“newPar”:{“sign”:true,“value”:“1097118557553143”},“deltaWei”:{“sign”:true,“value”:“1100000000000000”}}627236121252025-10-19T13:57:59.000Z0xa7b181ed7bbaebb73feb81cefaa44b4d74aec54900x81337dc4a2dd419b588a533dec6563ebff445982e044adff2c71bb9dadae7875
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dfffalse10{“newPar”:{“sign”:true,“value”:“815001865776361163927”},“deltaWei”:{“sign”:true,“value”:“815001865776361163927”}}344236090112025-10-19T03:31:23.000Z0x1383a0c14615c095985335f844388b75035f675f00xaf1aca1ac5c749e05ec73289bb354a06abffd2b964bb77163101b4a18a2293d8
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dfffalse10{“newPar”:{“sign”:true,“value”:“24020941670630219578”},“deltaWei”:{“sign”:true,“value”:“24020941670630219578”}}624236109842025-10-19T10:07:47.000Z0x144dc83d89adaa3227447efbc17f4fbdf959f87100xa9f80e405297c595ccab016554d05c3955af7bc812d6a6951c4c080f1341fc23
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogDeposit_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogIndexUpdate_event

Interest rate index updates for Dolomite margin markets containing borrow rate, supply rate, and last update timestamp. Tracks the accumulation of interest over time for each market identifier.
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_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_indexSTRUCT<borrow STRING, supply STRING, lastUpdate STRING>Liquidity index at the time of the event. Numeric string representation of the scaled interest rate accumulator in ray units (1e27).
addressremovedin_indexin_marketlog_indexblock_numberblock_timestamptransaction_hash
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse{“borrow”:“1000000000000000000”,“supply”:“1000000000000000000”,“lastUpdate”:“1753320239”}7693229857202025-07-24T01:23:59.000Z0xd56d70a8244b5b614089df032e3ae82f3fedcaf443000099695446b540df9285
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse{“borrow”:“1000000000000000000”,“supply”:“1000000000000000000”,“lastUpdate”:“1753320947”}7108229857772025-07-24T01:35:47.000Z0x1ec9b61469c7af4efeca6a05de2f95bb26c161b3d45f86443768c27798514167
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse{“borrow”:“1000000000000000000”,“supply”:“1000000000000000000”,“lastUpdate”:“1753329251”}10168229864592025-07-24T03:54:11.000Z0x7749cac884dbd6c830e77471f931ddbcbb5f3cefd106e4368c2f2fa3ad522b03
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogIndexUpdate_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogInterestRate_event

Interest rate update events emitted by Dolomite Margin protocol contracts, recording rate changes for lending markets. Contains market identifier and new rate value for tracking borrowing cost dynamics.
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_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_rateSTRUCT<value STRING>Interest rate value used in the protocol operation. Numeric string representation without decimal formatting.
addressin_rateremovedin_marketlog_indexblock_numberblock_timestamptransaction_hash
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d0false1398238170992025-11-17T06:26:47.000Z0x49ce026989c5688fb4c67120fcd1052006f624c103313f2f9ed942ee38d640e1
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d962882269false197238170992025-11-17T06:26:47.000Z0x49ce026989c5688fb4c67120fcd1052006f624c103313f2f9ed942ee38d640e1
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d560226621false096238170992025-11-17T06:26:47.000Z0x49ce026989c5688fb4c67120fcd1052006f624c103313f2f9ed942ee38d640e1
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogInterestRate_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogLiquidate_event

Liquidation events from the Dolomite margin trading protocol recording undercollateralized position seizures. Contains liquidator and liquidated account identifiers, market IDs for collateral and debt assets, and balance updates (deltaWei and newPar) for both parties’ positions.
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_solidAccountOwnerSTRINGAccount address of the entity performing the liquidation or vaporization in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_solidAccountNumberSTRINGAccount number identifying the liquidator’s position in the Dolomite protocol. String-encoded numeric value, with 0 representing the default account and larger values representing isolated sub-accounts.
in_liquidAccountOwnerSTRINGAccount address of the entity whose position is being liquidated in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_liquidAccountNumberSTRINGAccount number identifying the position being liquidated in the Dolomite protocol. String-encoded numeric value, with 0 representing the default account and larger values representing isolated sub-accounts.
in_heldMarketSTRINGMarket identifier for the collateral asset held by the account. String-encoded numeric value representing the market ID in the Dolomite protocol.
in_owedMarketSTRINGMarket identifier for the debt asset owed by the account. String-encoded numeric value representing the market ID in the Dolomite protocol.
in_solidHeldUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the liquidator’s collateral position in the Dolomite protocol. Structured as deltaWei (change in balance with sign and string value) and newPar (new principal balance with sign and string value).
in_solidOwedUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the liquidator’s debt position in the Dolomite protocol. Structured as deltaWei (change in balance with sign and string value) and newPar (new principal balance with sign and string value).
in_liquidHeldUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the liquidated account’s collateral position in the Dolomite protocol. Structured as deltaWei (change in balance with sign and string value) and newPar (new principal balance with sign and string value).
in_liquidOwedUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the liquidated account’s debt position in the Dolomite protocol. Structured as deltaWei (change in balance with sign and string value) and newPar (new principal balance with sign and string value).
addressremovedlog_indexblock_numberin_heldMarketin_owedMarketblock_timestamptransaction_hashin_solidHeldUpdatein_solidOwedUpdatein_liquidHeldUpdatein_liquidOwedUpdatein_solidAccountOwnerin_liquidAccountOwnerin_solidAccountNumberin_liquidAccountNumber
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse16236962511312025-10-31T08:49:35.000Z0x93a676030b72ed9836def94929f2077dc2dd67680f2f5131098615c4e7e7e15b{“newPar”:{“sign”:true,“value”:“715370367165090421577522”},“deltaWei”:{“sign”:true,“value”:“715370367165090421577522”}}{“newPar”:{“sign”:false,“value”:“82343299689644420987674”},“deltaWei”:{“sign”:false,“value”:“84556088149130618890219”}}{“newPar”:{“sign”:true,“value”:“387185669810637539939018”},“deltaWei”:{“sign”:false,“value”:“715370367165090421577522”}}{“newPar”:{“sign”:false,“value”:“0”},“deltaWei”:{“sign”:true,“value”:“84556088149130618890219”}}0xe08d97e151473a848c3d9ca3f323cb720472d0150x0fa1189abd92aab2d184733199ba62e2753f08130106924441316439665467825893570938675248704851554637559078038768458179328412865
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse68232760531352025-09-02T14:35:47.000Z0x5e9679b2cc52b300b0e1b464f4e2a522826576f7d2d65c849e71738b976626ca{“newPar”:{“sign”:true,“value”:“6180839875925778599104”},“deltaWei”:{“sign”:true,“value”:“6180839875925778599104”}}{“newPar”:{“sign”:false,“value”:“1186125017”},“deltaWei”:{“sign”:false,“value”:“1200115861”}}{“newPar”:{“sign”:true,“value”:“1814480124074221400896”},“deltaWei”:{“sign”:false,“value”:“6180839875925778599104”}}{“newPar”:{“sign”:false,“value”:“0”},“deltaWei”:{“sign”:true,“value”:“1200115861”}}0x1ff6b8e1192eb0369006bbad76da9068b68961b20x93d7c80eee39bfe8655078077c72780f1c992bac086883159905999804058867499485026127901937739234392478655657649386154302205877
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse533237197151312025-11-03T15:31:47.000Z0x6288f14614cfc2403f5a279b58dedaa1265d902afb99a974a846e4737aff72bd{“newPar”:{“sign”:true,“value”:“71265933377469801458543”},“deltaWei”:{“sign”:true,“value”:“71265933377469801458543”}}{“newPar”:{“sign”:false,“value”:“3903865682398560583182”},“deltaWei”:{“sign”:false,“value”:“7066056989107503771053”}}{“newPar”:{“sign”:true,“value”:“20117983285154453990885”},“deltaWei”:{“sign”:false,“value”:“71265933377469801458543”}}{“newPar”:{“sign”:false,“value”:“0”},“deltaWei”:{“sign”:true,“value”:“7066056989107503771053”}}0x1ff6b8e1192eb0369006bbad76da9068b68961b20xc6ba400b078b56cdf137f491f5ee7bd776616a50020304969299132296290512933346043122394899385375354244572771223164732374563042
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogLiquidate_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogOperation_event

Event log emitted by DolomiteMargin protocol contracts when an operation is executed, recording the sender address and transaction context. Used for tracking protocol interactions and operation sequencing across margin trading activities.
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.
addressremovedin_senderlog_indexblock_numberblock_timestamptransaction_hash
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse0x67567fce98a44745820069c37c395426f1c30ba6433230944562025-08-08T06:08:47.000Z0xc52a5d2af29a43b951305ccb63c84848c54f7620d1116c13bedb68a59e72e4ae
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse0x67567fce98a44745820069c37c395426f1c30ba672230937142025-08-08T03:39:47.000Z0xadf4e9b24f99b323fb2ed6bd1179c21d54c52e5c046fc6e284a72b5233231a7a
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse0x67567fce98a44745820069c37c395426f1c30ba6436230930472025-08-08T01:25:47.000Z0x17e7a4f6d4654bb550c8dcd58040f16e3b8fee9212820695befdaaeb9f403507
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogOperation_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogOperatorSet_event

Operator authorization events from Dolomite Margin protocol recording when an owner grants or revokes trusted operator status to an address. The in_trusted flag indicates whether the operator is being authorized or deauthorized to execute operations on behalf of the owner.
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_ownerSTRINGAddress that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string.
in_operatorSTRINGAddress authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string.
in_trustedBOOLBoolean flag indicating whether the operator has trusted status for the owner’s account.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogOperatorSet_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogOraclePrice_event

Oracle price update events emitted by Dolomite Margin contracts, containing market identifiers and updated asset prices. Used for tracking price feed changes and valuation snapshots across Dolomite protocol 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_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_priceSTRUCT<value STRING>Price of the asset or position in the transaction or event. Numeric string representation in smallest denomination or with extended precision.
addressremovedin_pricein_marketlog_indexblock_numberblock_timestamptransaction_hash
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse111509653463105045110423239293562025-12-03T00:29:11.000Z0xf17e42d4c33fcc88f2859395e668461dd32f783059334a491b2a161c88ce6c22
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse9998946500000000000000000000005422239293562025-12-03T00:29:11.000Z0xf17e42d4c33fcc88f2859395e668461dd32f783059334a491b2a161c88ce6c22
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse9992833900000000001420239293562025-12-03T00:29:11.000Z0xf17e42d4c33fcc88f2859395e668461dd32f783059334a491b2a161c88ce6c22
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogOraclePrice_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogSell_event

Token swap events from the Dolomite protocol recording account-to-market trades with balance updates. Contains taker market (sold token), maker market (received token), account identifiers, exchange wrapper address, and delta/principal balance changes for both positions.
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_accountOwnerSTRINGOwner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_accountNumberSTRINGAccount identifier associated with the owner’s position in the Dolomite protocol. Numeric string representing a unique sub-account within the user’s address space.
in_takerMarketSTRINGMarket identifier for the token sold in the swap. Numeric string representing the Dolomite protocol’s internal market ID.
in_makerMarketSTRINGMarket identifier for the token received in the swap. Numeric string representing the Dolomite protocol’s internal market ID.
in_takerUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the taker market position in the Dolomite protocol. Contains deltaWei (balance change) and newPar (principal balance after update), each with a sign indicating positive or negative value and a numeric string value.
in_makerUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the maker market position in the Dolomite protocol. Contains deltaWei (balance change) and newPar (principal balance after update), each with a sign indicating positive or negative value and a numeric string value.
in_exchangeWrapperSTRINGContract address of the exchange wrapper used to facilitate the token swap in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
addressremovedlog_indexblock_numberin_makerMarketin_makerUpdatein_takerMarketin_takerUpdateblock_timestampin_accountOwnerin_accountNumbertransaction_hashin_exchangeWrapper
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse5982381395710{“newPar”:{“sign”:true,“value”:“8956104734390105659094”},“deltaWei”:{“sign”:true,“value”:“8956104734390105659094”}}11{“newPar”:{“sign”:true,“value”:“0”},“deltaWei”:{“sign”:false,“value”:“9965407598120652499083”}}2025-11-16T19:53:35.000Z0x343234aa2dca76497b64f232a9f4ee8786440241906211115828429673116688393351126524421716167540103408901164007504322029942740x59e8664cee766be505b77e37553ab8df4868d98adb2878b758d3f62e8e46dbec0x40e816361e9eceb4ded402def58cc77e9f097914
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse332381152010{“newPar”:{“sign”:true,“value”:“113560278228032526638”},“deltaWei”:{“sign”:true,“value”:“113560278228032526638”}}0{“newPar”:{“sign”:true,“value”:“0”},“deltaWei”:{“sign”:false,“value”:“40000000000000000”}}2025-11-16T11:42:35.000Z0x7c79de2d1dbd37587fc1fcdcf243dc23df949b4d1141685287482802071189398614135392353435244682270772645425341064796514018965750xa5e534d70ae113f54359cce65f44a00577a415ef709ebae8194c83cb120cdc2c0x40e816361e9eceb4ded402def58cc77e9f097914
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse4812381152910{“newPar”:{“sign”:true,“value”:“906219238775971774397”},“deltaWei”:{“sign”:true,“value”:“906219238775971774397”}}5{“newPar”:{“sign”:true,“value”:“0”},“deltaWei”:{“sign”:false,“value”:“1009859863”}}2025-11-16T11:44:23.000Z0x7c79de2d1dbd37587fc1fcdcf243dc23df949b4d224604794135455536123450442449226045646366682907616166181654310608286247814000x2c4bd0fa27f8f5b1237e58f3134f57e20f7a666d839e151f0818fadd2041590d0x40e816361e9eceb4ded402def58cc77e9f097914
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogSell_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogSetEarningsRate_event

Earnings rate configuration events emitted by Dolomite Margin protocol contracts when the protocol fee rate is updated. Records the new earnings rate value applied to interest calculations for the lending platform.
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_earningsRateSTRUCT<value STRING>Earnings rate parameter set in the protocol. Stored as a struct containing an 18-decimal fixed-point number represented as a string.
addressremovedlog_indexblock_numberblock_timestampin_earningsRatetransaction_hash
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse155227781542025-06-25T01:24:47.000Z8000000000000000000x9c0d0361a4d1541bc8ecca92c2a2f1f96f8ed38b0f4f7b926af2dc5636075dce
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse5227539402025-06-21T16:11:11.000Z8500000000000000000x73e6b7c434b3eb972356fbf17cfee412fee48ed87ff4250010514ec0669998d9
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogSetEarningsRate_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogSetEarningsRateOverride_event

Event logs emitted when earnings rate overrides are set for specific markets in the DolomiteMargin protocol. Contains the market identifier and the override value applied to modify default earnings rate 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_marketIdSTRINGUnique identifier for a market within the Dolomite protocol. String representation of a non-negative integer starting from 0.
in_earningsRateOverrideSTRUCT<value STRING>Custom earnings rate set for a specific market in the Dolomite protocol. Struct containing a string value representing the rate override.
addressremovedlog_indexin_marketIdblock_numberblock_timestamptransaction_hashin_earningsRateOverride
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse15711227886342025-06-26T12:31:35.000Z0x247c5aab0a8a768e368bfbac84df0317ee830d15ddd18822d6338a34a0ced55a0
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse18913232689952025-09-01T14:51:11.000Z0x5db7b66ca451e7af3d526a5d7aa089336863802273b83c11a630eb6548e9c9f10
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse38914233473872025-09-12T13:48:59.000Z0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db080
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogSetEarningsRateOverride_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogSetLiquidationSpread_event

Event log emitted when the liquidation spread parameter is updated in the Dolomite Margin protocol. Records the new spread value used to calculate liquidator incentives during position liquidations.
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_liquidationSpreadSTRUCT<value STRING>Liquidation spread parameter for the Dolomite protocol. Struct containing a string value field representing the spread in wei, with 18 decimal precision.
addressremovedlog_indexblock_numberblock_timestamptransaction_hashin_liquidationSpread
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse4227539402025-06-21T16:11:11.000Z0x73e6b7c434b3eb972356fbf17cfee412fee48ed87ff4250010514ec0669998d950000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogSetLiquidationSpread_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogSetLiquidationSpreadPremium_event

Event log emitted when liquidation spread premium parameters are configured for a specific market in the Dolomite margin protocol. Records the market identifier and the new premium value applied to liquidation spreads for risk management.
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_marketIdSTRINGUnique identifier for a market within the Dolomite protocol. String representation of a non-negative integer starting from 0.
in_liquidationSpreadPremiumSTRUCT<value STRING>Liquidation spread premium parameter for a Dolomite market. String representation of the premium value in wei, where 1e18 represents 100% (e.g., ‘200000000000000000’ equals 20%).
addressremovedlog_indexin_marketIdblock_numberblock_timestamptransaction_hashin_liquidationSpreadPremium
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse38614233473872025-09-12T13:48:59.000Z0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db08600000000000000000
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse39615233473872025-09-12T13:48:59.000Z0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db082000000000000000000
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse18613232689952025-09-01T14:51:11.000Z0x5db7b66ca451e7af3d526a5d7aa089336863802273b83c11a630eb6548e9c9f12000000000000000000
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogSetLiquidationSpreadPremium_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogTrade_event

Trade execution events from Dolomite Margin protocol containing maker and taker account details, market identifiers, position deltas, and auto-trader addresses. Captures bilateral trades with input/output market pairs and balance updates for both counterparties.
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_takerAccountOwnerSTRINGAddress that owns the taker account in the Dolomite protocol trade. Hex-encoded, 0x-prefixed, 42-character string.
in_takerAccountNumberSTRINGAccount identifier for the taker side of the trade in the Dolomite protocol. Numeric string that can be either a simple index (0) or a large integer representing a virtual account.
in_makerAccountOwnerSTRINGAddress that owns the maker account in the Dolomite protocol trade. Hex-encoded, 0x-prefixed, 42-character string.
in_makerAccountNumberSTRINGAccount identifier for the maker side of the trade in the Dolomite protocol. Numeric string that can be either a simple index (0) or a large integer representing a virtual account.
in_inputMarketSTRINGMarket identifier for the asset received by the taker in the trade. Numeric string representing the market index in the Dolomite protocol.
in_outputMarketSTRINGMarket identifier for the asset sent by the taker in the trade. Numeric string representing the market index in the Dolomite protocol.
in_takerInputUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the taker’s input position resulting from the trade. Structure contains deltaWei (signed change in Wei units) and newPar (signed new principal balance), where sign is true for positive and false for negative values, both represented as numeric strings.
in_takerOutputUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the taker’s output position resulting from the trade. Structure contains deltaWei (signed change in Wei units) and newPar (signed new principal balance), where sign is true for positive and false for negative values, both represented as numeric strings.
in_makerInputUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the maker’s input position resulting from the trade. Structure contains deltaWei (signed change in Wei units) and newPar (signed new principal balance), where sign is true for positive and false for negative values, both represented as numeric strings.
in_makerOutputUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the maker’s output position resulting from the trade. Structure contains deltaWei (signed change in Wei units) and newPar (signed new principal balance), where sign is true for positive and false for negative values, both represented as numeric strings.
in_autoTraderSTRINGContract address of the automated trading contract that executed or facilitated the trade. Hex-encoded, 0x-prefixed, 42-character string.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogTrade_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogTransfer_event

Transfer events from Dolomite Margin protocol recording balance changes between two accounts within a specified market. Contains account identifiers, market ID, and balance updates (deltaWei and newPar) for both accounts involved in the transfer.
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_accountOneOwnerSTRINGOwner address for the first account in a transfer operation. Hex-encoded, 0x-prefixed, 42-character string.
in_accountOneNumberSTRINGAccount identifier for the first account in a transfer operation. Numeric string that can represent either a simple account number (e.g., ‘0’) or a large integer identifier.
in_accountTwoOwnerSTRINGOwner address for the second account in a transfer operation. Hex-encoded, 0x-prefixed, 42-character string.
in_accountTwoNumberSTRINGAccount identifier for the second account in a transfer operation. Numeric string that can represent either a simple account number (e.g., ‘0’) or a large integer identifier.
in_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_updateOneSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Account balance update for the first account in the transfer, containing the change in Wei balance (deltaWei) and the new principal balance (newPar). Each balance component includes a boolean sign indicator (true for positive, false for negative) and a numeric string value.
in_updateTwoSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Account balance update for the second account in the transfer, containing the change in Wei balance (deltaWei) and the new principal balance (newPar). Each balance component includes a boolean sign indicator (true for positive, false for negative) and a numeric string value.
addressremovedin_marketlog_indexblock_numberin_updateOnein_updateTwoblock_timestamptransaction_hashin_accountOneOwnerin_accountTwoOwnerin_accountOneNumberin_accountTwoNumber
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse017423012865{“newPar”:{“sign”:true,“value”:“14363974207”},“deltaWei”:{“sign”:false,“value”:“64000051532687586520”}}{“newPar”:{“sign”:true,“value”:“63999526736905486874”},“deltaWei”:{“sign”:true,“value”:“64000051532687586520”}}2025-07-27T20:26:23.000Z0x9fbc05180b29478982ad4c7ca829783c5e4b1d9f3ea3467e38bcf6fd6aa58c310x1fafb618033fb07d3a99704a47451971976cb5860x1fafb618033fb07d3a99704a47451971976cb586086096545337612676061031589632061480420484688482330900711344665906411350226675
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse10102323012967{“newPar”:{“sign”:true,“value”:“0”},“deltaWei”:{“sign”:false,“value”:“6252751263000000000000”}}{“newPar”:{“sign”:true,“value”:“6252751263000000000000”},“deltaWei”:{“sign”:true,“value”:“6252751263000000000000”}}2025-07-27T20:46:47.000Z0xa4bf8bb1c01de1488cea92e0d1583242095b19f5da811d24ce2ed22a595d36d60x1fafb618033fb07d3a99704a47451971976cb5860x1fafb618033fb07d3a99704a47451971976cb586086096545337612676061031589632061480420484688482330900711344665906411350226675
0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse476723012979{“newPar”:{“sign”:true,“value”:“0”},“deltaWei”:{“sign”:false,“value”:“30000110”}}{“newPar”:{“sign”:true,“value”:“29999901”},“deltaWei”:{“sign”:true,“value”:“30000110”}}2025-07-27T20:49:11.000Z0x8b48b3e3f6093f5806183f4f3d5ed0d8b841ffb94964993c9b30ef8814e965e30x1fafb618033fb07d3a99704a47451971976cb5860x1fafb618033fb07d3a99704a47451971976cb586086096545337612676061031589632061480420484688482330900711344665906411350226675
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogTransfer_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogVaporize_event

Vaporization events from the Dolomite margin protocol recording debt elimination from undercollateralized accounts. Contains liquidator and vaporized account identifiers, market IDs for collateral and debt assets, and balance updates (deltaWei and newPar) for both positions.
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_solidAccountOwnerSTRINGAccount address of the entity performing the liquidation or vaporization in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_solidAccountNumberSTRINGAccount number identifying the liquidator’s position in the Dolomite protocol. String-encoded numeric value, with 0 representing the default account and larger values representing isolated sub-accounts.
in_vaporAccountOwnerSTRINGAccount address of the entity whose position is being vaporized in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_vaporAccountNumberSTRINGAccount number identifying the vaporized position in the Dolomite protocol. String-encoded numeric value representing the sub-account being liquidated through vaporization.
in_heldMarketSTRINGMarket identifier for the collateral asset held by the account. String-encoded numeric value representing the market ID in the Dolomite protocol.
in_owedMarketSTRINGMarket identifier for the debt asset owed by the account. String-encoded numeric value representing the market ID in the Dolomite protocol.
in_solidHeldUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the liquidator’s collateral position in the Dolomite protocol. Structured as deltaWei (change in balance with sign and string value) and newPar (new principal balance with sign and string value).
in_solidOwedUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the liquidator’s debt position in the Dolomite protocol. Structured as deltaWei (change in balance with sign and string value) and newPar (new principal balance with sign and string value).
in_vaporOwedUpdateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Balance update for the vaporized account’s debt position in the Dolomite protocol. Structured as deltaWei (change in balance with sign and string value) and newPar (new principal balance with sign and string value).
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogVaporize_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogWithdraw_event

Withdrawal events from Dolomite margin protocol accounts tracking asset removals with account owner, market identifier, recipient address, and balance updates. Balance changes include both the Wei-denominated delta and resulting principal amount with sign indicators for position direction.
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_accountOwnerSTRINGOwner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string.
in_accountNumberSTRINGAccount identifier associated with the owner’s position in the Dolomite protocol. Numeric string representing a unique sub-account within the user’s address space.
in_marketSTRINGTrading pair or market identifier specifying the assets being traded or operated on.
in_updateSTRUCT<deltaWei STRUCT<sign BOOL, value STRING>, newPar STRUCT<sign BOOL, value STRING>>Account balance update containing the change in Wei (deltaWei) and the new principal balance (newPar). Each component includes a boolean sign indicator and a numeric string value representing the amount.
in_toSTRINGDestination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string.
in_toaddressremovedin_marketin_updatelog_indexblock_numberblock_timestampin_accountOwnerin_accountNumbertransaction_hash
0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dff0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse1{“newPar”:{“sign”:true,“value”:“5254578399512304208267”},“deltaWei”:{“sign”:false,“value”:“5000000000000000000000”}}131236553792025-10-25T15:30:35.000Z0x6bc0ea9f0fdbbaaf1055506a8c5dcd750ee3a8ca00x31f3af2dee7c67445d038ed3cbeda995e34eabdc39339331c250cea62222cf92
0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dff0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse13{“newPar”:{“sign”:true,“value”:“26926121773697064103169826”},“deltaWei”:{“sign”:false,“value”:“15500000000000000000000000”}}49236510442025-10-25T00:57:59.000Z0x6e7e6f4b73794321852993bf8f5524094e74d7c4283839677911784619693792956242921468492690883202341282305828219571548507997560x3edb2f1f885a6138339450b1ebf09e4397568bdcade624770f0e6ac172ebaa16
0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dff0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97dfalse13{“newPar”:{“sign”:true,“value”:“26061177381259597113081612”},“deltaWei”:{“sign”:false,“value”:“1000000000000000000000000”}}94236510592025-10-25T01:00:59.000Z0x6e7e6f4b73794321852993bf8f5524094e74d7c4283839677911784619693792956242921468492690883202341282305828219571548507997560xd6ac813842aa986868c66d65ab072c079f0d4a0bd9fc39d52e087dc919de87f5
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogWithdraw_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

DolomiteMargin_LogWithdrawExcessTokens_event

Event log recording excess token withdrawals from Dolomite Margin protocol contracts. Contains the withdrawn token address and amount, enabling tracking of protocol surplus token removals and treasury management 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_tokenSTRINGToken address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string.
in_amountSTRINGInput amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.dolomite_v1_ethereum.DolomiteMargin_LogWithdrawExcessTokens_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100