Trustline Count Metrics

    Description

    We track two metrics related to trustline count:

    • Total number of trustlines - the total amount of active trustline through time.
    • Net trustlines created - change in number of active trustlines on a daily basis.

    Access

    Free Access


    Measuring Unit

    Amount of trustlines


    Data Type

    Timeseries Data


    Frequency

    Daily frequency


    Latency

    On-Chain Latency


    Available Assets

    Available for:


    SanAPI

    Available under the total_trustlines_count name.

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

    Run in Explorer

    Available under the daily_trustlines_count_change name.

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

    Run in Explorer