Assets Issued Metrics
Description
We track the issued assets under two metrics:
- Total assets issued - total number of issued assets through time
- Number of new assets issued - tracks only the new assets issued per day
We would count an asset as part of this metric only if the issuer has more than 100 active trustlines at the time the asset is issued.
Access
Measuring Unit
Amount of assets
Data Type
Frequency
Latency
Available Assets
Available for:
total_assets_issued
- these assetsdaily_assets_issued
- these assets
SanAPI
Available under the total_assets_issued
name.
1 2 3 4 5 6 7 8 9 10 11 12
{ getMetric(metric: "total_assets_issued") { timeseriesData( slug: "xrp" from: "2020-01-01T00:00:00Z" to: "2020-01-07T00:00:00Z" ) { datetime value } } }
Available under the daily_assets_issued
name.
1 2 3 4 5 6 7 8 9 10 11 12
{ getMetric(metric: "daily_assets_issued") { timeseriesData( slug: "xrp" from: "2020-01-01T00:00:00Z" to: "2020-01-07T00:00:00Z" ) { datetime value } } }