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

Free Access


Measuring Unit

Amount of assets


Data Type

Timeseries Data


Frequency

Daily frequency


Latency

On-Chain Latency


Available Assets

Available for:


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

Run in Explorer

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

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.