Amount in Top Holders

    Definition

    Show the amount of coins/tokens help by the top holders. By default the top 10 holders are taken.

    Metrics available:

    • amount_in_top_holders - All holders are taken into account.
    • amount_in_exchange_top_holders - Only holders that are known exchange addresses are taken into account.
    • amount_in_non_exchange_top_holders - Only holders that are not exchange addresses are taken into account.

    Access

    Restricted Access


    Measuring Unit

    Token/Coin amount


    Data Type

    Timeseries Data


    Frequency

    Daily Intervals


    Latency

    On-Chain Latency


    Available Assets

    Available for:


    SanAPI

    The available metrics are:

    • amount_in_top_holders
    • amount_in_exchange_top_holders
    • amount_in_non_exchange_top_holders
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    {
      getMetric(metric: "amount_in_top_holders") {
        timeseriesData(
          slug: "santiment"
          from: "2020-01-01T00:00:00Z"
          to: "2020-01-07T00:00:00Z"
          interval: "1d"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer

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

    Run in Explorer

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

    Run in Explorer