- Description
- Metrics related to Morpho protocol:
- Access
- Measuring Unit
- Data Type
- Frequency
- Latency
- Available Assets
- SanAPI
Morpho Protocol
Description
Morpho is a decentralized finance (DeFi) protocol designed to optimize yields in lending and borrowing markets. It operates as a layer on top of existing protocols like Compound and Aave, improving the efficiency of capital allocation by matching lenders and borrowers directly. This direct matching reduces intermediaries, enhancing both the interest rates for lenders and borrowers. The protocol aims to offer seamless and more profitable interactions within the DeFi ecosystem.
Metrics related to Morpho protocol:
Action metrics:
morpho_action_deposits
- Amount of deposited tokensmorpho_action_deposits_usd
- Amount of deposited tokens in USDmorpho_action_liquidations
- Amount of liquidated tokensmorpho_action_liquidations_usd
- Amount of liquidated tokens in USDmorpho_action_new_debt
- Amount of borrowed tokensmorpho_action_new_debt_usd
- Amount of borrowed tokens in USDmorpho_action_repayments
- Amount of repaid tokensmorpho_action_repayments_usd
- Amount of repaid tokens in USD
Protocol total action metrics:
morpho_total_deposits_usd
- Total amount of deposits on Morpho protocol (combining all assets in USD)morpho_total_liquidations_usd
- Total amount of liquidations on Morpho protocol (combining all assets in USD)morpho_total_new_debt_usd
- Total amount of borrowings on Morpho protocol (combining all assets in USD)morpho_total_repayments_usd
- Total amount of repayments on Morpho protocol (combining all assets in USD)
Morpho vaults total supplied metric:
morpho_vaults_total_supplied_usd
- Morpho vault total supplied in USD
Daily active addresses:
morpho_active_addresses
- Daily active addresses on Morpho protocol
Access
Measuring Unit
- Amount in tokens/USD
Data Type
Frequency
- Five-minute Intervals - Actions metrics
- Daily Intervals - Active addresses metric
Latency
Available Assets
Metrics related to the entire protocol available for morpho-token
.
Other metrics: available for these assets
SanAPI
Action metrics: morpho_action_deposits<_usd>
, morpho_action_liquidations<_usd>
,
morpho_action_new_debt<_usd>
and morpho_action_repayments<_usd>
1 2 3 4 5 6 7 8 9 10 11 12 13
{ getMetric(metric: "morpho_action_deposits_usd"){ timeseriesData( slug: "weth" from: "2024-01-01T00:00:00Z" to: "2024-02-01T00:00:00Z" includeIncompleteData: true interval: "1d"){ datetime value } } }
Total action metrics: morpho_total_deposits_usd
, morpho_total_liquidations_usd
,
morpho_total_new_debt_usd
and morpho_total_repayments_usd
1 2 3 4 5 6 7 8 9 10 11 12 13
{ getMetric(metric: "morpho_total_new_debt_usd"){ timeseriesData( slug: "morpho-token" from: "2024-01-10T00:00:00Z" to: "2024-01-12T00:00:00Z" includeIncompleteData: true interval: "1h"){ datetime value } } }
Morpho vaults total supplied metric: morpho_vaults_total_supplied_usd
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{ getMetric(metric: "morpho_vaults_total_supplied_usd"){ timeseriesData( selector:{ slug:"morpho-token" labelFqn: "santiment/morpho_vault->steakhouse usdc:v1" } from: "2024-10-01T00:00:00Z" to: "2024-10-10T00:00:00Z" includeIncompleteData: true interval: "1h"){ datetime value } } }
Daily active addresses: morpho_active_addresses
1 2 3 4 5 6 7 8 9 10 11 12 13
{ getMetric(metric: "morpho_active_addresses"){ timeseriesData( slug: "morpho-token" from: "2024-01-01T00:00:00Z" to: "2024-01-10T00:00:00Z" includeIncompleteData: true interval: "1d"){ datetime value } } }