Number of accounts

Description

  • Total number of accounts - Counts all addresses which hold XRP token across time. It is computed by summing all holder distribution metrics. Holder distribution metrics are computed on top of balances table.
  • Number of active accounts - Tracks the number of addresses which have either sent or received XRP token in a previous 30, 60 or 90 days. It is computed on top of balances table.
  • Number of accounts with minimum reserves - computed by summing all holder distribution metrics except the following groups:
    • 0-0.001
    • 0.001-0.01
    • 0.01-0.1
    • 0.1-1
    • 1-10

Access

Free Access


Measuring Unit

Amount of accounts


Data Type

Timeseries Data


Frequency


Latency

On-Chain Latency


Available Assets

Available for:


SanAPI

Available under the holders_distribution_total name.

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

Run in Explorer

Available under the active_addresses_30d name.

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

Run in Explorer

Available under the active_addresses_60d name.

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

Run in Explorer

Available under the active_addresses_90d name.

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

Run in Explorer

Help & Feedback

We are using cookies to improve your experience!

By clicking “Allow all”, you agree to use of all cookies. Visit our Cookies Policy to learn more.