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
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.
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 } } }
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 } } }
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 } } }
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 } } }