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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_marketId | STRING | Unique identifier for a market within the Dolomite protocol. String representation of a non-negative integer starting from 0. |
in_token | STRING | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| address | removed | in_token | log_index | in_marketId | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 0xcccc62962d17b8914c62d74ffb843d73b2a3cccc | 382 | 14 | 23347387 | 2025-09-12T13:48:59.000Z | 0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db08 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 0x88887be419578051ff9f4eb6c858a951921d8888 | 391 | 15 | 23347387 | 2025-09-12T13:48:59.000Z | 0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db08 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 0xda5e1988097297dcdc1f90d4dfe7909e847cbef6 | 181 | 13 | 23268995 | 2025-09-01T14:51:11.000Z | 0x5db7b66ca451e7af3d526a5d7aa089336863802273b83c11a630eb6548e9c9f1 |
Example Query
Example Query
Query with partition filter
DolomiteMargin_LogBuy_event
No description available.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_accountOwner | STRING | Owner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_accountNumber | STRING | Account 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_takerMarket | STRING | Market identifier for the token sold in the swap. Numeric string representing the Dolomite protocol’s internal market ID. |
in_makerMarket | STRING | Market identifier for the token received in the swap. Numeric string representing the Dolomite protocol’s internal market ID. |
in_takerUpdate | STRUCT<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_makerUpdate | STRUCT<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_exchangeWrapper | STRING | Contract address of the exchange wrapper used to facilitate the token swap in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_accountOwner | STRING | Owner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_accountNumber | STRING | Account 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_callee | STRING | Contract address of the callee invoked in the Dolomite protocol operation. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_accountOwner | STRING | Owner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_accountNumber | STRING | Account 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_market | STRING | Trading pair or market identifier specifying the assets being traded or operated on. |
in_update | STRUCT<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_from | STRING | Address originating the transfer or operation. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| address | in_from | removed | in_market | in_update | log_index | block_number | block_timestamp | in_accountOwner | in_accountNumber | transaction_hash |
|---|---|---|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | 0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dff | false | 0 | {“newPar”:{“sign”:true,“value”:“1097118557553143”},“deltaWei”:{“sign”:true,“value”:“1100000000000000”}} | 627 | 23612125 | 2025-10-19T13:57:59.000Z | 0xa7b181ed7bbaebb73feb81cefaa44b4d74aec549 | 0 | 0x81337dc4a2dd419b588a533dec6563ebff445982e044adff2c71bb9dadae7875 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | 0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dff | false | 10 | {“newPar”:{“sign”:true,“value”:“815001865776361163927”},“deltaWei”:{“sign”:true,“value”:“815001865776361163927”}} | 344 | 23609011 | 2025-10-19T03:31:23.000Z | 0x1383a0c14615c095985335f844388b75035f675f | 0 | 0xaf1aca1ac5c749e05ec73289bb354a06abffd2b964bb77163101b4a18a2293d8 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | 0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dff | false | 10 | {“newPar”:{“sign”:true,“value”:“24020941670630219578”},“deltaWei”:{“sign”:true,“value”:“24020941670630219578”}} | 624 | 23610984 | 2025-10-19T10:07:47.000Z | 0x144dc83d89adaa3227447efbc17f4fbdf959f871 | 0 | 0xa9f80e405297c595ccab016554d05c3955af7bc812d6a6951c4c080f1341fc23 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_market | STRING | Trading pair or market identifier specifying the assets being traded or operated on. |
in_index | STRUCT<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). |
Sample Data
Sample Data
| address | removed | in_index | in_market | log_index | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | {“borrow”:“1000000000000000000”,“supply”:“1000000000000000000”,“lastUpdate”:“1753320239”} | 7 | 693 | 22985720 | 2025-07-24T01:23:59.000Z | 0xd56d70a8244b5b614089df032e3ae82f3fedcaf443000099695446b540df9285 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | {“borrow”:“1000000000000000000”,“supply”:“1000000000000000000”,“lastUpdate”:“1753320947”} | 7 | 108 | 22985777 | 2025-07-24T01:35:47.000Z | 0x1ec9b61469c7af4efeca6a05de2f95bb26c161b3d45f86443768c27798514167 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | {“borrow”:“1000000000000000000”,“supply”:“1000000000000000000”,“lastUpdate”:“1753329251”} | 10 | 168 | 22986459 | 2025-07-24T03:54:11.000Z | 0x7749cac884dbd6c830e77471f931ddbcbb5f3cefd106e4368c2f2fa3ad522b03 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_market | STRING | Trading pair or market identifier specifying the assets being traded or operated on. |
in_rate | STRUCT<value STRING> | Interest rate value used in the protocol operation. Numeric string representation without decimal formatting. |
Sample Data
Sample Data
| address | in_rate | removed | in_market | log_index | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | 0 | false | 13 | 98 | 23817099 | 2025-11-17T06:26:47.000Z | 0x49ce026989c5688fb4c67120fcd1052006f624c103313f2f9ed942ee38d640e1 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | 962882269 | false | 1 | 97 | 23817099 | 2025-11-17T06:26:47.000Z | 0x49ce026989c5688fb4c67120fcd1052006f624c103313f2f9ed942ee38d640e1 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | 560226621 | false | 0 | 96 | 23817099 | 2025-11-17T06:26:47.000Z | 0x49ce026989c5688fb4c67120fcd1052006f624c103313f2f9ed942ee38d640e1 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_solidAccountOwner | STRING | Account address of the entity performing the liquidation or vaporization in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_solidAccountNumber | STRING | Account 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_liquidAccountOwner | STRING | Account address of the entity whose position is being liquidated in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_liquidAccountNumber | STRING | Account 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_heldMarket | STRING | Market identifier for the collateral asset held by the account. String-encoded numeric value representing the market ID in the Dolomite protocol. |
in_owedMarket | STRING | Market identifier for the debt asset owed by the account. String-encoded numeric value representing the market ID in the Dolomite protocol. |
in_solidHeldUpdate | STRUCT<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_solidOwedUpdate | STRUCT<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_liquidHeldUpdate | STRUCT<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_liquidOwedUpdate | STRUCT<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). |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_heldMarket | in_owedMarket | block_timestamp | transaction_hash | in_solidHeldUpdate | in_solidOwedUpdate | in_liquidHeldUpdate | in_liquidOwedUpdate | in_solidAccountOwner | in_liquidAccountOwner | in_solidAccountNumber | in_liquidAccountNumber |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 16 | 23696251 | 13 | 1 | 2025-10-31T08:49:35.000Z | 0x93a676030b72ed9836def94929f2077dc2dd67680f2f5131098615c4e7e7e15b | {“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”}} | 0xe08d97e151473a848c3d9ca3f323cb720472d015 | 0x0fa1189abd92aab2d184733199ba62e2753f0813 | 0 | 106924441316439665467825893570938675248704851554637559078038768458179328412865 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 68 | 23276053 | 13 | 5 | 2025-09-02T14:35:47.000Z | 0x5e9679b2cc52b300b0e1b464f4e2a522826576f7d2d65c849e71738b976626ca | {“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”}} | 0x1ff6b8e1192eb0369006bbad76da9068b68961b2 | 0x93d7c80eee39bfe8655078077c72780f1c992bac | 0 | 86883159905999804058867499485026127901937739234392478655657649386154302205877 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 533 | 23719715 | 13 | 1 | 2025-11-03T15:31:47.000Z | 0x6288f14614cfc2403f5a279b58dedaa1265d902afb99a974a846e4737aff72bd | {“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”}} | 0x1ff6b8e1192eb0369006bbad76da9068b68961b2 | 0xc6ba400b078b56cdf137f491f5ee7bd776616a50 | 0 | 20304969299132296290512933346043122394899385375354244572771223164732374563042 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_sender | STRING | Address that initiated the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| address | removed | in_sender | log_index | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 0x67567fce98a44745820069c37c395426f1c30ba6 | 433 | 23094456 | 2025-08-08T06:08:47.000Z | 0xc52a5d2af29a43b951305ccb63c84848c54f7620d1116c13bedb68a59e72e4ae |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 0x67567fce98a44745820069c37c395426f1c30ba6 | 72 | 23093714 | 2025-08-08T03:39:47.000Z | 0xadf4e9b24f99b323fb2ed6bd1179c21d54c52e5c046fc6e284a72b5233231a7a |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 0x67567fce98a44745820069c37c395426f1c30ba6 | 436 | 23093047 | 2025-08-08T01:25:47.000Z | 0x17e7a4f6d4654bb550c8dcd58040f16e3b8fee9212820695befdaaeb9f403507 |
Example Query
Example Query
Query with partition filter
DolomiteMargin_LogOperatorSet_event
Operator authorization events from Dolomite Margin protocol recording when an owner grants or revokes trusted operator status to an address. Thein_trusted flag indicates whether the operator is being authorized or deauthorized to execute operations on behalf of the owner.
Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_owner | STRING | Address that owns or controls the shares or position being deposited or withdrawn. Hex-encoded, 0x-prefixed, 42-character string. |
in_operator | STRING | Address authorized to execute the operation on behalf of the token owner. Hex-encoded, 0x-prefixed, 42-character string. |
in_trusted | BOOL | Boolean flag indicating whether the operator has trusted status for the owner’s account. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_market | STRING | Trading pair or market identifier specifying the assets being traded or operated on. |
in_price | STRUCT<value STRING> | Price of the asset or position in the transaction or event. Numeric string representation in smallest denomination or with extended precision. |
Sample Data
Sample Data
| address | removed | in_price | in_market | log_index | block_number | block_timestamp | transaction_hash |
|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 1115096534631050451 | 10 | 423 | 23929356 | 2025-12-03T00:29:11.000Z | 0xf17e42d4c33fcc88f2859395e668461dd32f783059334a491b2a161c88ce6c22 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 999894650000000000000000000000 | 5 | 422 | 23929356 | 2025-12-03T00:29:11.000Z | 0xf17e42d4c33fcc88f2859395e668461dd32f783059334a491b2a161c88ce6c22 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 999283390000000000 | 1 | 420 | 23929356 | 2025-12-03T00:29:11.000Z | 0xf17e42d4c33fcc88f2859395e668461dd32f783059334a491b2a161c88ce6c22 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_accountOwner | STRING | Owner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_accountNumber | STRING | Account 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_takerMarket | STRING | Market identifier for the token sold in the swap. Numeric string representing the Dolomite protocol’s internal market ID. |
in_makerMarket | STRING | Market identifier for the token received in the swap. Numeric string representing the Dolomite protocol’s internal market ID. |
in_takerUpdate | STRUCT<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_makerUpdate | STRUCT<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_exchangeWrapper | STRING | Contract address of the exchange wrapper used to facilitate the token swap in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| address | removed | log_index | block_number | in_makerMarket | in_makerUpdate | in_takerMarket | in_takerUpdate | block_timestamp | in_accountOwner | in_accountNumber | transaction_hash | in_exchangeWrapper |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 598 | 23813957 | 10 | {“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.000Z | 0x343234aa2dca76497b64f232a9f4ee8786440241 | 90621111582842967311668839335112652442171616754010340890116400750432202994274 | 0x59e8664cee766be505b77e37553ab8df4868d98adb2878b758d3f62e8e46dbec | 0x40e816361e9eceb4ded402def58cc77e9f097914 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 33 | 23811520 | 10 | {“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.000Z | 0x7c79de2d1dbd37587fc1fcdcf243dc23df949b4d | 114168528748280207118939861413539235343524468227077264542534106479651401896575 | 0xa5e534d70ae113f54359cce65f44a00577a415ef709ebae8194c83cb120cdc2c | 0x40e816361e9eceb4ded402def58cc77e9f097914 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 481 | 23811529 | 10 | {“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.000Z | 0x7c79de2d1dbd37587fc1fcdcf243dc23df949b4d | 22460479413545553612345044244922604564636668290761616618165431060828624781400 | 0x2c4bd0fa27f8f5b1237e58f3134f57e20f7a666d839e151f0818fadd2041590d | 0x40e816361e9eceb4ded402def58cc77e9f097914 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_earningsRate | STRUCT<value STRING> | Earnings rate parameter set in the protocol. Stored as a struct containing an 18-decimal fixed-point number represented as a string. |
Sample Data
Sample Data
| address | removed | log_index | block_number | block_timestamp | in_earningsRate | transaction_hash |
|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 155 | 22778154 | 2025-06-25T01:24:47.000Z | 800000000000000000 | 0x9c0d0361a4d1541bc8ecca92c2a2f1f96f8ed38b0f4f7b926af2dc5636075dce |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 5 | 22753940 | 2025-06-21T16:11:11.000Z | 850000000000000000 | 0x73e6b7c434b3eb972356fbf17cfee412fee48ed87ff4250010514ec0669998d9 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_marketId | STRING | Unique identifier for a market within the Dolomite protocol. String representation of a non-negative integer starting from 0. |
in_earningsRateOverride | STRUCT<value STRING> | Custom earnings rate set for a specific market in the Dolomite protocol. Struct containing a string value representing the rate override. |
Sample Data
Sample Data
| address | removed | log_index | in_marketId | block_number | block_timestamp | transaction_hash | in_earningsRateOverride |
|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 157 | 11 | 22788634 | 2025-06-26T12:31:35.000Z | 0x247c5aab0a8a768e368bfbac84df0317ee830d15ddd18822d6338a34a0ced55a | 0 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 189 | 13 | 23268995 | 2025-09-01T14:51:11.000Z | 0x5db7b66ca451e7af3d526a5d7aa089336863802273b83c11a630eb6548e9c9f1 | 0 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 389 | 14 | 23347387 | 2025-09-12T13:48:59.000Z | 0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db08 | 0 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_liquidationSpread | STRUCT<value STRING> | Liquidation spread parameter for the Dolomite protocol. Struct containing a string value field representing the spread in wei, with 18 decimal precision. |
Sample Data
Sample Data
| address | removed | log_index | block_number | block_timestamp | transaction_hash | in_liquidationSpread |
|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 4 | 22753940 | 2025-06-21T16:11:11.000Z | 0x73e6b7c434b3eb972356fbf17cfee412fee48ed87ff4250010514ec0669998d9 | 50000000000000000 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_marketId | STRING | Unique identifier for a market within the Dolomite protocol. String representation of a non-negative integer starting from 0. |
in_liquidationSpreadPremium | STRUCT<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%). |
Sample Data
Sample Data
| address | removed | log_index | in_marketId | block_number | block_timestamp | transaction_hash | in_liquidationSpreadPremium |
|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 386 | 14 | 23347387 | 2025-09-12T13:48:59.000Z | 0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db08 | 600000000000000000 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 396 | 15 | 23347387 | 2025-09-12T13:48:59.000Z | 0xb47050b172e6e9eb0200f1d0b6a20ec4e3a4d8894c7a0059296cac4d4be3db08 | 2000000000000000000 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 186 | 13 | 23268995 | 2025-09-01T14:51:11.000Z | 0x5db7b66ca451e7af3d526a5d7aa089336863802273b83c11a630eb6548e9c9f1 | 2000000000000000000 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_takerAccountOwner | STRING | Address that owns the taker account in the Dolomite protocol trade. Hex-encoded, 0x-prefixed, 42-character string. |
in_takerAccountNumber | STRING | Account 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_makerAccountOwner | STRING | Address that owns the maker account in the Dolomite protocol trade. Hex-encoded, 0x-prefixed, 42-character string. |
in_makerAccountNumber | STRING | Account 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_inputMarket | STRING | Market identifier for the asset received by the taker in the trade. Numeric string representing the market index in the Dolomite protocol. |
in_outputMarket | STRING | Market identifier for the asset sent by the taker in the trade. Numeric string representing the market index in the Dolomite protocol. |
in_takerInputUpdate | STRUCT<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_takerOutputUpdate | STRUCT<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_makerInputUpdate | STRUCT<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_makerOutputUpdate | STRUCT<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_autoTrader | STRING | Contract address of the automated trading contract that executed or facilitated the trade. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_accountOneOwner | STRING | Owner address for the first account in a transfer operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_accountOneNumber | STRING | Account 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_accountTwoOwner | STRING | Owner address for the second account in a transfer operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_accountTwoNumber | STRING | Account 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_market | STRING | Trading pair or market identifier specifying the assets being traded or operated on. |
in_updateOne | STRUCT<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_updateTwo | STRUCT<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. |
Sample Data
Sample Data
| address | removed | in_market | log_index | block_number | in_updateOne | in_updateTwo | block_timestamp | transaction_hash | in_accountOneOwner | in_accountTwoOwner | in_accountOneNumber | in_accountTwoNumber |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 0 | 174 | 23012865 | {“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.000Z | 0x9fbc05180b29478982ad4c7ca829783c5e4b1d9f3ea3467e38bcf6fd6aa58c31 | 0x1fafb618033fb07d3a99704a47451971976cb586 | 0x1fafb618033fb07d3a99704a47451971976cb586 | 0 | 86096545337612676061031589632061480420484688482330900711344665906411350226675 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 10 | 1023 | 23012967 | {“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.000Z | 0xa4bf8bb1c01de1488cea92e0d1583242095b19f5da811d24ce2ed22a595d36d6 | 0x1fafb618033fb07d3a99704a47451971976cb586 | 0x1fafb618033fb07d3a99704a47451971976cb586 | 0 | 86096545337612676061031589632061480420484688482330900711344665906411350226675 |
| 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 4 | 767 | 23012979 | {“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.000Z | 0x8b48b3e3f6093f5806183f4f3d5ed0d8b841ffb94964993c9b30ef8814e965e3 | 0x1fafb618033fb07d3a99704a47451971976cb586 | 0x1fafb618033fb07d3a99704a47451971976cb586 | 0 | 86096545337612676061031589632061480420484688482330900711344665906411350226675 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_solidAccountOwner | STRING | Account address of the entity performing the liquidation or vaporization in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_solidAccountNumber | STRING | Account 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_vaporAccountOwner | STRING | Account address of the entity whose position is being vaporized in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_vaporAccountNumber | STRING | Account number identifying the vaporized position in the Dolomite protocol. String-encoded numeric value representing the sub-account being liquidated through vaporization. |
in_heldMarket | STRING | Market identifier for the collateral asset held by the account. String-encoded numeric value representing the market ID in the Dolomite protocol. |
in_owedMarket | STRING | Market identifier for the debt asset owed by the account. String-encoded numeric value representing the market ID in the Dolomite protocol. |
in_solidHeldUpdate | STRUCT<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_solidOwedUpdate | STRUCT<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_vaporOwedUpdate | STRUCT<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). |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_accountOwner | STRING | Owner address of the account in the Dolomite protocol. Hex-encoded, 0x-prefixed, 42-character string. |
in_accountNumber | STRING | Account 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_market | STRING | Trading pair or market identifier specifying the assets being traded or operated on. |
in_update | STRUCT<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_to | STRING | Destination address receiving tokens or assets in the operation. Hex-encoded, 0x-prefixed, 42-character string. |
Sample Data
Sample Data
| in_to | address | removed | in_market | in_update | log_index | block_number | block_timestamp | in_accountOwner | in_accountNumber | transaction_hash |
|---|---|---|---|---|---|---|---|---|---|---|
| 0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dff | 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 1 | {“newPar”:{“sign”:true,“value”:“5254578399512304208267”},“deltaWei”:{“sign”:false,“value”:“5000000000000000000000”}} | 131 | 23655379 | 2025-10-25T15:30:35.000Z | 0x6bc0ea9f0fdbbaaf1055506a8c5dcd750ee3a8ca | 0 | 0x31f3af2dee7c67445d038ed3cbeda995e34eabdc39339331c250cea62222cf92 |
| 0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dff | 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 13 | {“newPar”:{“sign”:true,“value”:“26926121773697064103169826”},“deltaWei”:{“sign”:false,“value”:“15500000000000000000000000”}} | 49 | 23651044 | 2025-10-25T00:57:59.000Z | 0x6e7e6f4b73794321852993bf8f5524094e74d7c4 | 28383967791178461969379295624292146849269088320234128230582821957154850799756 | 0x3edb2f1f885a6138339450b1ebf09e4397568bdcade624770f0e6ac172ebaa16 |
| 0xf8b2c637a68cf6a17b1df9f8992eebeff63d2dff | 0x003ca23fd5f0ca87d01f6ec6cd14a8ae60c2b97d | false | 13 | {“newPar”:{“sign”:true,“value”:“26061177381259597113081612”},“deltaWei”:{“sign”:false,“value”:“1000000000000000000000000”}} | 94 | 23651059 | 2025-10-25T01:00:59.000Z | 0x6e7e6f4b73794321852993bf8f5524094e74d7c4 | 28383967791178461969379295624292146849269088320234128230582821957154850799756 | 0xd6ac813842aa986868c66d65ab072c079f0d4a0bd9fc39d52e087dc919de87f5 |
Example Query
Example Query
Query with partition filter
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.Columns
Columns
| Column | Type | Description |
|---|---|---|
block_timestamp | TIMESTAMP | Timestamp when the block was produced. UTC timezone, millisecond precision. |
block_number | INT64 | Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain. |
transaction_hash | STRING | Unique identifier for the transaction. 66-character hex string including 0x prefix. |
log_index | INT64 | Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission. |
address | STRING | Contract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string. |
removed | BOOL | Boolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization. |
in_token | STRING | Token address involved in the transaction or operation. Hex-encoded, 0x-prefixed, 42-character string. |
in_amount | STRING | Input amount for the swap, transaction, or operation. Numeric string representation of token quantity in smallest denomination. |
Sample Data
Sample Data
No sample data available.
Example Query
Example Query
Query with partition filter