Skip to main content

Documentation Index

Fetch the complete documentation index at: https://enfinitos.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

@enfinitos/sdk-operator-web is a React component library that tenants embed in their own admin UIs to surface the EnfinitOS operator surfaces — rights registry, proof centre, compliance flows, billing, pacing, pilots — without rebuilding the dashboards that ship in the platform’s reference web app.
Publishes at launch. @enfinitos/sdk-operator-web is typed, tested, and integration-ready. The package publishes to npm at the April 2027 production launch. You can request sandbox access today at enfinitos.com/apply to start integrating against the sandbox API.
npm install @enfinitos/sdk-operator-web
import { RightsRegistry, ProofCentre, BillingPanel } from "@enfinitos/sdk-operator-web";

export default function AdminHome() {
  return (
    <div>
      <RightsRegistry tenantId="tnt_..." />
      <ProofCentre tenantId="tnt_..." />
      <BillingPanel tenantId="tnt_..." />
    </div>
  );
}
Each component is a thin wrapper over the same HTTP API documented in the API reference. Theming is tenant-controlled via CSS variables. See the README on the developer hub for the full component catalogue.