Total Supply

    Definition

    Total Supply is the total amount of coins or tokens belonging to a particular cryptocurrency that have been created or mined, and are currently in circulation, including those that may be locked or reserved.

    Supply in Profit metric is computed by summing all token amounts that were last transferred when the price of token was less then the current price.

    Percent of Supply in Profit represents the ratio between Supply in Profit and Circulation Supply. This metric measures weather the market is in depression or euphoria stage. If token is breaking all time highs every holder is in profit, so the metric value is 100%. On the other side, in the bear markets there are usually more then half of tokens are in loss, so the metric value drops below 50%.


    Access

    Restricted Access


    Measuring Unit

    • total_supply and total_supply_in_profit - Token/Coin amount
    • percent_of_total_supply_in_profit - Percentage

    Data Type

    Timeseries Data


    Frequency

    Daily Intervals


    Latency

    On-Chain Latency


    Available Assets

    Available for for these assets

    Note: All metrics are available for the same set of assets.


    SanAPI

    Total Supply is available under the total_supply name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    {
      getMetric(metric: "total_supply") {
        timeseriesData(
          selector: {
            slug: "ethereum"
          }
          from: "2023-11-01T00:00:00Z"
          to: "2023-12-01T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer

    Supply in Profit is available under the total_supply_in_profit name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    {
      getMetric(metric: "total_supply_in_profit") {
        timeseriesData(
          selector: {
            slug: "ethereum"
          }
          from: "2023-11-01T00:00:00Z"
          to: "2023-12-01T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer

    Percent of Supply in Profit is available for percent_of_total_supply_in_profit name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    {
      getMetric(metric: "percent_of_total_supply_in_profit") {
        timeseriesData(
          selector: {
            slug: "ethereum"
          }
          from: "2023-11-01T00:00:00Z"
          to: "2023-12-01T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer