Number of accounts
Description
- Total number of accounts - Counts all addresses which hold the XRP token over time. It is computed by summing all holder distribution metrics. Holder distribution metrics are computed on top of the balances table.
- Number of active accounts - Tracks the number of addresses which have either sent or received the XRP token in the previous 30, 60, or 90 days. It is computed on top of the 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
Measuring Unit
Amount of accounts
Data Type
Frequency
- Total number of accounts - Daily frequency
- Number of active accounts - Five-Minute Intervals
- Number of accounts with minimum reserves - Daily frequency
Latency
Available Assets
Available for:
holders_distribution_total- these assetsactive_addresses_30d- these assetsactive_addresses_60d- these assetsactive_addresses_90d- these assets
SanAPI
Available under the holders_distribution_total name.
{ getMetric(metric: "holders_distribution_total") { timeseriesDataJson( slug: "xrp" from: "2020-01-01T00:00:00Z" to: "2020-01-07T00:00:00Z" ) }}Available under the active_addresses_30d name.
{ getMetric(metric: "active_addresses_30d") { timeseriesDataJson( slug: "xrp" from: "2020-01-01T00:00:00Z" to: "2020-01-07T00:00:00Z" ) }}Available under the active_addresses_60d name.
{ getMetric(metric: "active_addresses_60d") { timeseriesDataJson( slug: "xrp" from: "2020-01-01T00:00:00Z" to: "2020-01-07T00:00:00Z" ) }}Available under the active_addresses_90d name.
{ getMetric(metric: "active_addresses_90d") { timeseriesDataJson( slug: "xrp" from: "2020-01-01T00:00:00Z" to: "2020-01-07T00:00:00Z" ) }}