Supply On/Outside Exchanges

    Definition

    The following metrics are provided:

    • Percent of total supply on exchange - What percent of the coin/token total supply is stored in known exchange wallets.
    • Supply on exchanges - What amount of coins/tokens are stored in known exchange wallets.
    • Supply outside exchange - What amount of coins/tokens are stored outside known exchange wallets.

    Note: The metrics are computed on the set of publicly known exchange wallets and the exchange wallets that Santiment has found by doing analysis.


    Access

    Restricted Access.


    Measuring Unit

    • Percent of total supply on exchanges is measured in percentage between 0 and 100
    • Supply On/Outside Exchanges is measured in amount of coins/tokens

    Data Type

    Timeseries Data


    Frequency

    Daily Intervals


    Latency

    On-Chain Latency


    Available Assets


    SanAPI

    Available under the names:

    • percent_of_total_supply_on_exchanges
    • supply_on_exchanges
    • supply_outside_exchanges
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "percent_of_total_supply_on_exchanges") {
        timeseriesData(
          slug: "santiment"
          from: "2019-01-01T00:00:00Z"
          to: "2019-09-01T00:00:00Z"
          interval: "7d"
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "supply_on_exchanges") {
        timeseriesData(
          slug: "santiment"
          from: "2019-01-01T00:00:00Z"
          to: "2019-09-01T00:00:00Z"
          interval: "7d"
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer


    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "supply_outside_exchanges") {
        timeseriesData(
          slug: "santiment"
          from: "2019-01-01T00:00:00Z"
          to: "2019-09-01T00:00:00Z"
          interval: "7d"
        ) {
          datetime
          value
        }
      }
    }

    Run in explorer