Predicates/Provenance/Evidence

audited by

The subject has undergone a formal security, financial, or compliance audit by the object firm.

proposed Provenance/Evidence auditedBy

Proposed — in the registry with a stable definition and a deterministic ID, but not yet promoted to the enshrined set. Semantics may still be refined before promotion.

Identity

A predicate is itself an atom. Its ID is derived from these exact bytes — the same value in your app, in anyone else's, and onchain.

predicate atom data
{
  "@context": "https://schema.org/",
  "@type": "DefinedTerm",
  "name": "audited by",
  "description": "The subject has undergone a formal security, financial, or compliance audit by the object firm"
}
atom id 0x0d6d3c4e6e6ee7b2b2c488d48d70ab3defd5d0844f8f84724616528cd59b03c4

Semantics

Market patternattributive — describes the subject

Use it

import
// tree-shakeable: only this predicate ships in your bundle
import { auditedById } from "@0xintuition/predicates/auditedBy";

// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.auditedBy; // 0x0d6d3c4e6e6ee7b2b2c488d48d70ab3defd5d0844f8f84724616528cd59b03c4
make a claim
import { buildTripleByName } from "@0xintuition/primitives/triple";

const { value: triple } = buildTripleByName(
	subjectId,
	"auditedBy",
	objectId,
);
// triple.predicateId === 0x0d6d3c4e… — resolved from the registry