XR-Telemetry XRPL-Utilities / XR-Telemetry
XR-Telemetry

XR-Telemetry

XRPL Macro Telemetry

Network-level signals: supply constriction, regional liquidity flows, AMM depth, and an implied utility floor. Pay $0.10 USD in XRP for a fresh snapshot, or use the cached samples below.

Cached samples (illustrative)

Pick a sample snapshot

These are static, illustrative payloads frozen in the page so you can see the response shape without paying. Click Run live snapshot below for a real, on-chain reading.

Burst Math

Implied price floor calculator

Plug in an institutional settlement volume and an assumed velocity. The available liquid supply comes from the snapshot below. The result is the implied USD-per-XRP needed to clear that volume.

P · Available liquid supply
total − dormant − escrowed
Formula
M = Q ÷ (V × P)
Implied USD per XRP
M · Implied price
USD per XRP
Current spot
Market premium over implied floor:
Reading

Q is the dollar value of XRP-mediated settlement you want the network to clear in the period.

V is the average number of times each liquid XRP is reused inside that period. A higher V means each XRP works harder; the implied floor is lower.

P is the supply that can actually move — total minus dormant minus escrowed. Constrict P (more escrowed, more dormant) and the implied floor rises for the same Q and V.

Predictive Floor Matrix

24-month projection

Using M₀ from the Burst Math calculator above as the starting point, project forward under monthly supply-constriction and volume-growth assumptions. The shaded band is a ±15% uncertainty envelope.

Months from now · baseline = M₀ × ((1 + growth) ÷ (1 − constriction))i, ±15% band, dashed line = current spot
0%5%
0%15%
M₀ (linked)
Tweak Q or V above to re-anchor.
M at month 24

Illustrative only. Real outcomes depend on regulatory regime, AMM depth, exchange behavior, and macro liquidity — none of which are linear. This calculator is a sensitivity tool, not a forecast.

Live snapshot

Run a real snapshot

Pay $0.10 USD in XRP from any wallet (Xaman, Crossmark, GemWallet, etc.) and get a freshly computed payload over the wire. No inputs required in v1 — Telemetry covers the whole network.

For developers & AI agents

Pay $0.10 per snapshot, no API key

XR-Telemetry implements x402 v2 with the exact scheme on XRPL mainnet. Verification and settlement are delegated to the t54 XRPL facilitator.

  1. 1. POST /quote returns an invoice with amount in drops, recipient, deep link, and QR code.
  2. 2. Pay the XRPL Payment from any wallet. Poll GET /status/{invoice_id} until paid: true.
  3. 3. GET /results/{invoice_id} returns the full TelemetryPayload: supply, liquidity, AMM, utility floor.
# pip install x402-xrpl requests
import requests

quote = requests.post(
    "https://telemetry.xrpl-utilities.io/quote",
    json={},
).json()

# Sign & submit XRPL Payment from your wallet using quote["deep_link"]
# Then poll until paid:
while not requests.get(
    f"https://telemetry.xrpl-utilities.io/status/{quote['invoice_id']}"
).json()["paid"]:
    time.sleep(5)

payload = requests.get(
    f"https://telemetry.xrpl-utilities.io/results/{quote['invoice_id']}"
).json()

print(payload["supply"])
print(payload["utility_floor"])

Output shape

What you get back

Safe harbor & compliance

XR-Telemetry produces on-chain network telemetry and an algebraic implied-floor computation. It is not a price prediction, investment recommendation, or financial advice. The Burst Math and Floor Matrix outputs are sensitivity tools — they show what the math implies under explicit assumptions, not what XRP will or should be priced at.

XRPL-Utilities provides behavioral data classification and technical ledger analysis. We do not provide financial advice, risk ratings, or investment forensics. Users are responsible for ensuring their use of these tools complies with local digital asset regulations, including the California Digital Financial Assets Law and the Colorado AI Act where applicable.