← Cut sheet·Offering 11 of 12
OFFERING 11· Plugs into Reputation · Fraud detection · Treasury analytics · Risk pricing
Hive Curves — Signed Signal Library
Nanopayment volume produces a firehose of evidence. The Hive Curves library applies LOESS smoothing across signed receipts so Circle, enterprises, and regulators can see trends instead of noise — and every point on every curve is itself signed on the RogueWave-Lattice v2 substrate. Pricing, fraud, reputation, throughput, treasury — all curves, all signed, all replayable.
How it plugs in.
curves.ts
// Smoothed, signed curve of agent payment volume. import { loess, signCurve } from '@thehiveryiq/circle-curves'; const points = receipts.map(r => ({ t: r.issued_at, v: r.amount })); const smooth = loess(points, { bandwidth: 0.3 }); const signed = signCurve(smooth, { substrate: 'rogue-wave-lattice-v2', bind_to: 'agent:lex_contract_pro/30d', }); // Pin signed.content_hash. Replay the curve later — same answer.
What Circle gets.
- Trends, not noise — LOESS-smoothed signals across the nanopayment firehose.
- Every curve is itself signed — analyst output is independently verifiable.
- Reusable across reputation, fraud, treasury, throughput, pricing — one library, one substrate.
- Replayable: pin the content hash, regenerate the curve, confirm the answer matches.
Ready when Circle is.