MakerDAO

    Description

    MakerDAO is a decentralized finance (DeFi) platform built on the Ethereum blockchain that allows individuals to create and manage the DAI stablecoin, which is pegged to the value of the US dollar. MakerDAO uses a system of smart contracts to manage the creation and redemption of DAI tokens, which can be used for a variety of purposes, such as payments, trading, and investment.

    One of the key features of MakerDAO is its collateralized debt position (CDP) system, which allows users to lock up their digital assets as collateral in order to generate DAI stablecoins. This creates a decentralized lending system that is independent of traditional financial intermediaries and allows users to access liquidity without having to sell their assets.

    Action metrics:

    • makerdao_action_deposits - Amount of deposited tokens
    • makerdao_action_liquidations - Amount of liquidated tokens
    • makerdao_action_new_debt - Amount of borrowed tokens
    • makerdao_action_repayments - Amount of repaid tokens

    Note: All of the above metrics are also available in USD using the _usd suffix (for example: makerdao_action_deposits_usd).

    Total action metrics:

    • makerdao_total_deposits_usd - Amount of all deposits in usd
    • makerdao_total_liquidations_usd - Amount of all liquidations in usd
    • makerdao_total_new_debt_usd - Amount of all borrowings in usd
    • makerdao_total_repayments_usd - Amount of all repayments in usd

    Total supplied/borrowed metrics:

    • makerdao_total_supplied - Total supplied tokens
    • makerdao_total_supplied_usd - Total supplied tokens in usd
    • makerdao_total_borrowed - Total borrowed tokens
    • makerdao_total_borrowed_usd - Total borrowed tokens in usd

    Protocol total supplied/borrowed metrics:

    • makerdao_protocol_total_supplied_usd - Total supplied on MakerDAO (for all assets in usd)
    • makerdao_protocol_total_borrowed_usd - Total borrowed on MakerDAO (for all assets in usd)

    Daily active addresses:

    • makerdao_active_addresses - Daily active addresses on MakerDAO

    Access

    Restricted Access.


    Measuring Unit

    Amount in tokens/USD


    Data Type

    Timeseries Data


    Frequency

    Five-minute Intervals


    Latency

    On-Chain Latency


    Available Assets

    Total action metrics: available for maker and multi-collateral-dai

    Other metrics: available for these assets


    SanAPI

    Action metrics: makerdao_action_deposits<_usd>, makerdao_action_liquidations<_usd>, makerdao_action_new_debt<_usd> and makerdao_action_repayments<_usd>

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "makerdao_action_deposits_usd"){
        timeseriesData(
          slug: "weth"
          from: "2022-11-01T00:00:00Z"
          to: "2022-11-03T00:00:00Z"
          includeIncompleteData: true
          interval: "5m"){
            datetime
            value
          }
      }
    }

    Run in Explorer

    Total action metrics: makerdao_total_deposits_usd, makerdao_total_liquidations_usd, makerdao_total_new_debt_usd and makerdao_total_repayments_usd

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "makerdao_total_new_debt_usd"){
        timeseriesData(
          slug: "maker"
          from: "2022-11-01T00:00:00Z"
          to: "2022-11-03T00:00:00Z"
          includeIncompleteData: true
          interval: "5m"){
            datetime
            value
          }
      }
    }

    Run in Explorer

    Total supplied/borrowed metrics: makerdao_total_supplied<_usd> and makerdao_total_borrowed<_usd>

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "makerdao_total_supplied"){
        timeseriesData(
          slug: "wrapped-bitcoin"
          from: "2022-11-01T00:00:00Z"
          to: "2022-11-03T00:00:00Z"
          includeIncompleteData: true
          interval: "5m"){
            datetime
            value
          }
      }
    }

    Run in Explorer

    Protocol total supplied/borrowed metrics: makerdao_protocol_total_supplied_usd and makerdao_protocol_total_borrowed_usd

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "makerdao_protocol_total_supplied_usd"){
        timeseriesData(
          slug: "multi-collateral-dai"
          from: "2022-11-01T00:00:00Z"
          to: "2022-11-03T00:00:00Z"
          includeIncompleteData: true
          interval: "5m"){
            datetime
            value
          }
      }
    }

    Run in Explorer

    Daily active addresses: makerdao_active_addresses

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "makerdao_active_addresses"){
        timeseriesData(
          slug: "maker"
          from: "2023-01-01T00:00:00Z"
          to: "2023-01-10T00:00:00Z"
          includeIncompleteData: true
          interval: "1d"){
            datetime
            value
          }
      }
    }

    Run in Explorer