Predicates/Knowledge/Expertise

mentor of

The subject provides ongoing guidance and mentorship to the object person.

proposed Knowledge/Expertise mentorOf

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": "mentor of",
  "description": "The subject provides ongoing guidance and mentorship to the object person"
}
atom id 0xec25295b81a492462c66ae42b704acece2b74b0cd3266a2227b4feadb97ed800

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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