Predicates/Temporal/Lifecycle

enabled by

The subject outcome was made possible by the object precondition, innovation, or actor.

proposed Temporal/Lifecycle enabledBy

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": "enabled by",
  "description": "The subject outcome was made possible by the object precondition, innovation, or actor"
}
atom id 0x4e3a3e2022c34f648b2e458b4d3b8c81a0d9b93b5abaaed75d8604c4053c180f

Semantics

Market patternattributive — describes the subject

Use it

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

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

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