XonaXona Docs
OverviewResourcesxPayInference

Activity reports

Server-side USDC activity reports — totals, net flow, timeline, and top counterparties.

xpay report replaces the old direct-RPC history command. On-chain data is fetched server-side by OrbitX402 — no RPC URL, no rate-limiting, no 429 errors on your end.

# CLI
xpay report                      # weekly (default)
xpay report --period daily
xpay report --period monthly --json
// SDK
const report = await xpay.report({ period: "weekly" });
// report.summary   → { totalSent, totalReceived, netFlow, txCount }
// report.timeline  → daily buckets with sent / received / txCount
// report.topCounterparties → sorted by volume
// report.topTransactions   → biggest individual payments

The MCP tool is xpay_report — agents can ask for a spending summary without any additional setup.