Predicates/Comparison/Ranking

better than

The subject is asserted as subjectively superior to the object. Opinion-grade — the triple captures a claim, not an objective fact.

enshrined Comparison/Ranking betterThan

Enshrined — the object model is decided and the ID below is what every conforming app and the contract resolve.

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": "better than",
  "description": "The subject is asserted as subjectively superior to the object. Opinion-grade — the triple captures a claim, not an objective fact"
}
atom id 0x9111f910eac0d5c239048754d4527870a40902bd662af706a0ec6f0dc8ad3bfe

Semantics

Market patterncomparative — ranks subject against object

Use it

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

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

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