Skip to main content

Tables

MorphoBlue_AccrueInterest_event

Interest accrual events from Morpho Blue lending markets containing market identifier, accrued interest amount, protocol fee shares, and previous borrow rate. Used for tracking yield generation and interest rate dynamics across lending 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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_prevBorrowRateSTRINGBorrow rate before the interest accrual event in the Morpho Blue lending market. Numeric string representation.
in_interestSTRINGInterest amount accrued or paid in the transaction. Numeric string representation in the smallest unit of the relevant token.
in_feeSharesSTRINGNumber of fee shares minted to the protocol during the interest accrual event. Numeric string representation of share quantity.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.morpho_v2_plasma.MorphoBlue_AccrueInterest_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MorphoBlue_Borrow_event

Borrow events from Morpho Blue lending protocol recording debt position creation. Contains market identifier, borrowed asset amount, shares issued, caller address, borrower (onBehalf), and asset recipient, used for tracking protocol lending activity and user debt 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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_callerSTRINGAddress that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.
in_onBehalfSTRINGAddress for whom the operation is being executed. Hex-encoded, 0x-prefixed, 42-character string.
in_receiverSTRINGAddress that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
in_sharesSTRINGNumber of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol’s accounting system.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.morpho_v2_plasma.MorphoBlue_Borrow_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MorphoBlue_CreateMarket_event

Market creation events from the Morpho Blue lending protocol, containing the unique market identifier and configuration parameters including loan token, collateral token, oracle address, interest rate model (IRM), and liquidation loan-to-value (LLTV) ratio.
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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_marketParamsSTRUCT<loanToken STRING, collateralToken STRING, oracle STRING, irm STRING, lltv STRING>Market parameters defining a lending market. Struct containing loan token address, collateral token address, oracle address, interest rate model (IRM) address, and loan-to-value (LLTV) ratio as numeric string.
in_idaddressremovedlog_indexblock_numberblock_timestampin_marketParamstransaction_hash
0xfe1d7da2fbde85b1fee120c88df3e6b55164a2442dab97486d3d4f719a5ff1fb0x2ff74a46536f5c67ef5a42fd5b4e2ed8a2cee249false5129208382025-10-07T15:13:40.000Z{“irm”:“0x0000000000000000000000000000000000000000”,“lltv”:“980000000000000000”,“oracle”:“0x0000000000000000000000000000000000000000”,“loanToken”:“0x0000000000000000000000000000000000000000”,“collateralToken”:“0x0000000000000000000000000000000000000000”}0x96857942ef0ee08c83de7a7738e023427db72043f1903cf43698733e1c02eadc
Query with partition filter
SELECT *
FROM `tt-contracts.morpho_v2_plasma.MorphoBlue_CreateMarket_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MorphoBlue_Liquidate_event

Liquidation events from Morpho Blue lending markets recording debt repayment, collateral seizure, and bad debt realization. Captures liquidator address, borrower address, market identifier, repaid and seized asset amounts in both token units and protocol shares, with separate tracking of unrecoverable bad debt.
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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_callerSTRINGAddress that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.
in_borrowerSTRINGAddress of the borrower in the lending or loan transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_repaidAssetsSTRINGAmount of borrowed asset tokens repaid during the liquidation. Numeric string representation.
in_repaidSharesSTRINGAmount of debt repaid denominated in protocol share units during the liquidation. Numeric string representation.
in_seizedAssetsSTRINGAmount of collateral tokens seized from the borrower during liquidation. Numeric string representation.
in_badDebtAssetsSTRINGAmount of bad debt denominated in asset tokens that could not be recovered during liquidation. Numeric string representation.
in_badDebtSharesSTRINGAmount of bad debt denominated in protocol share units that could not be recovered during liquidation. Numeric string representation.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.morpho_v2_plasma.MorphoBlue_Liquidate_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MorphoBlue_Repay_event

Debt repayment events from Morpho Blue lending protocol. Records asset amounts repaid, borrower shares burned, market identifier, caller address, and beneficiary for tracking loan paydown activity.
ColumnTypeDescription
block_timestampTIMESTAMPTimestamp when the block was produced. UTC timezone, millisecond precision.
block_numberINT64Sequential identifier for the block in which the event or transaction was recorded. Integer value indicating the block’s position in the blockchain.
transaction_hashSTRINGUnique identifier for the transaction. 66-character hex string including 0x prefix.
log_indexINT64Position of the event within the block’s transaction logs. Zero-indexed integer representing the sequential order of log emission.
addressSTRINGContract address that emitted the event. Hex-encoded, 0x-prefixed, 42-character string.
removedBOOLBoolean flag indicating whether the event log was removed from the blockchain due to a chain reorganization.
in_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_callerSTRINGAddress that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.
in_onBehalfSTRINGAddress for whom the operation is being executed. Hex-encoded, 0x-prefixed, 42-character string.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
in_sharesSTRINGNumber of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol’s accounting system.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.morpho_v2_plasma.MorphoBlue_Repay_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MorphoBlue_Supply_event

Morpho Blue supply events capturing liquidity provider deposits into lending markets. Records market identifier, depositor address, beneficiary account, asset amounts supplied, and corresponding shares minted for tracking lender 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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_callerSTRINGAddress that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.
in_onBehalfSTRINGAddress for whom the operation is being executed. Hex-encoded, 0x-prefixed, 42-character string.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
in_sharesSTRINGNumber of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol’s accounting system.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.morpho_v2_plasma.MorphoBlue_Supply_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MorphoBlue_SupplyCollateral_event

Collateral deposit events from Morpho Blue lending markets recording the caller address, market identifier, beneficiary address, and collateral amount supplied. Used for tracking collateral positions and user lending activity across Morpho protocols.
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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_callerSTRINGAddress that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.
in_onBehalfSTRINGAddress for whom the operation is being executed. Hex-encoded, 0x-prefixed, 42-character string.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.morpho_v2_plasma.MorphoBlue_SupplyCollateral_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MorphoBlue_Withdraw_event

Withdraw event logs from Morpho Blue lending protocol containing market identifier, withdrawn asset amounts, share amounts, and participant addresses (caller, onBehalf, receiver). Used for tracking liquidity removals and position closures across Morpho lending 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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_callerSTRINGAddress that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.
in_onBehalfSTRINGAddress for whom the operation is being executed. Hex-encoded, 0x-prefixed, 42-character string.
in_receiverSTRINGAddress that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
in_sharesSTRINGNumber of shares involved in the deposit or withdrawal transaction. String-encoded integer representing the share quantity in the protocol’s accounting system.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.morpho_v2_plasma.MorphoBlue_Withdraw_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100

MorphoBlue_WithdrawCollateral_event

Collateral withdrawal events from Morpho Blue lending markets. Records the caller, beneficiary, recipient, market identifier, and withdrawn asset amount for tracking position liquidations and user collateral 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_idSTRINGUnique identifier for the position, record, or entity within the protocol. Numeric string representation.
in_callerSTRINGAddress that initiated or requested the contract function call. Hex-encoded, 0x-prefixed, 42-character string.
in_onBehalfSTRINGAddress for whom the operation is being executed. Hex-encoded, 0x-prefixed, 42-character string.
in_receiverSTRINGAddress that receives tokens, assets, or rewards from the transaction. Hex-encoded, 0x-prefixed, 42-character string.
in_assetsSTRINGNumber of asset units involved in the deposit or withdrawal transaction. String-encoded integer representing the asset quantity in the protocol’s accounting system.
No sample data available.
Query with partition filter
SELECT *
FROM `tt-contracts.morpho_v2_plasma.MorphoBlue_WithdrawCollateral_event`
WHERE block_timestamp >= DATE_SUB(CURRENT_DATE(), INTERVAL 7 DAY)
LIMIT 100