Liquidity in XRPL AMM Pools

    Description

    We track two metrics related to AMM liquidity:

    • Liquidity in XRPL AMM Pool by Pair - the total amount of liquidity for specific asset in pool.
    • Liquidity in XRPL AMM Pool by Asset - the total amount of tokens in all AMM pools for specific asset.

    Access

    Free Access


    Measuring Unit

    Amount of tokens.


    Data Type

    Timeseries Data


    Frequency

    Daily frequency


    Latency

    On-Chain Latency


    Available Assets

    Available for:


    SanAPI

    Available under liquidity_in_amm_pools_by_pair name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    {
      getMetric(metric: "liquidity_in_amm_pools_by_pair") {
        timeseriesData(
          selector: {
            slug: "xrp"
            owner: "XRP"
            label: "XRP-rXmagwMmnFtVet3uL26Q2iwk287SRvVMJ/MAG"
          }
          from: "2024-07-01T00:00:00Z"
          to: "2024-07-07T00:00:00Z"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer

    Available under the liquidity_in_amm_pools_by_asset name.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    {
      getMetric(metric: "liquidity_in_amm_pools_by_asset") {
        timeseriesData(
          selector: {
            slug: "xrp"
            owner: "XRP"
          }
          from: "2024-07-01T00:00:00Z"
          to: "2024-07-07T00:00:00Z"
        ) {
          datetime
          value
        }
      }
    }

    Run in Explorer