Predicates/Social/Reputation

reviewed

The subject has authored a review or evaluation of the object.

proposed Social/Reputation reviewed

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": "reviewed",
  "description": "The subject has authored a review or evaluation of the object"
}
atom id 0x48007c0b9905a0ff8016431514d5b19b80eb7e0fa419fab38698e5aae5dc8d84

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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