DeFi

    Description

    Some of the DeFi-related metrics have their own pages:

    MakerDAO Special Metrics: MakerDAO metrics

    Metrics related to DeFi protocols: Flow and balance metrics

    On this page the following metrics are defined:

    • defi_total_value_locked_usd - Shows total value locked in DeFi projects, available in USD .
    • defi_total_value_locked_eth - Shows total value locked in DeFi projects, available in ETH.

    Access

    Restricted Access.


    Measuring Unit

    Amount of USD/ETH


    Data Type

    Timeseries Data


    Frequency

    Hourly Intervals


    Latency

    Price Latency


    Available Assets

    Available for ethereum.


    SanAPI

    Amount of total locked ETH coins is available under the defi_total_value_locked_eth name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "defi_total_value_locked_eth") {
        timeseriesData(
          slug: "ethereum"
          from: "2020-04-01T00:00:00Z"
          to: "2020-04-07T00:00:00Z"
          interval: "1h"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer

    Denominated in USD - defi_total_value_locked_usd.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "defi_total_value_locked_usd") {
        timeseriesData(
          slug: "ethereum"
          from: "2020-04-01T00:00:00Z"
          to: "2020-04-07T00:00:00Z"
          interval: "1h"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer