MakerDAO DAI Savings Rate

    Description

    The MakerDAO DAI Savings Rate (DSR) is an interest rate paid to holders of the DAI stablecoin for locking their DAI into smart contracts. It was introduced as a way to incentivize users to hold DAI, thereby helping to maintain its stability and peg to the US dollar.

    The interest rate is determined by the MakerDAO community through governance votes and is paid out from the stability fees collected from borrowers who generate DAI by locking up collateral.

    MakerDAO DSR metrics:

    • makerdao_dsr_deposits - Amount of DAI deposited into the smart contract
    • makerdao_dsr_withdrawals - Amount of DAI withdrawn from the smart contract
    • makerdao_dsr_total_supplied - Total supply of DAI in the smart contract
    • mcd_dsr - Interest rate paid to DAI deposited in the DSR contract

    Access

    Restricted Access


    Measuring Unit

    Amount of DAI

    mcd_dsr - percentage


    Data Type

    Timeseries Data


    Frequency

    Five-minute Intervals


    Latency

    On-Chain Latency


    Available Assets

    Available for multi-collateral-dai


    SanAPI

    Deposit and withdraw metrics: makerdao_dsr_deposits and makerdao_dsr_withdrawals

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

    Run in Explorer

    Total supplied metric: makerdao_dsr_total_supplied

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

    Run in Explorer

    MakerDAO DAI savings rate metric: mcd_dsr

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

    Run in Explorer