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.

    Action metrics:

    • morpho_action_deposits - Amount of deposited tokens
    • morpho_action_deposits_usd - Amount of deposited tokens in USD
    • morpho_action_liquidations - Amount of liquidated tokens
    • morpho_action_liquidations_usd - Amount of liquidated tokens in USD
    • morpho_action_new_debt - Amount of borrowed tokens
    • morpho_action_new_debt_usd - Amount of borrowed tokens in USD
    • morpho_action_repayments - Amount of repaid tokens
    • morpho_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)

    Daily active addresses:

    • morpho_active_addresses - Daily active addresses on Morpho protocol

    Access

    Restricted Access


    Measuring Unit

    • Amount in tokens/USD

    Data Type

    Timeseries Data


    Frequency


    Latency

    On-Chain 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
          }
      }
    }

    Run in Explorer

    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
          }
      }
    }

    Run in Explorer

    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
          }
      }
    }

    Run in Explorer