Predicates/Comparison/Ranking

successor of

The subject is the next version or iteration following the object.

proposed Comparison/Ranking successorOf

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": "successor of",
  "description": "The subject is the next version or iteration following the object"
}
atom id 0x288c569a6e703ae9da00dddb2653bf1d2d14acd05ab798b05da8d0f62db5ba26

Semantics

Market patterncomparative — ranks subject against object

Use it

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

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

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