Predicates/Comparison/Ranking

predecessor of

The subject is an earlier version or iteration that came before the object.

proposed Comparison/Ranking predecessorOf

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": "predecessor of",
  "description": "The subject is an earlier version or iteration that came before the object"
}
atom id 0x0e79b08fc40e4904a66487564dcdf6b55c03603e3dab1259d24c85b46a94b094

Semantics

Market patterncomparative — ranks subject against object

Use it

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

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

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