Predicates/Knowledge/Expertise

teach

The subject actively disseminates knowledge about the object topic or skill.

proposed Knowledge/Expertise teach

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": "teach",
  "description": "The subject actively disseminates knowledge about the object topic or skill"
}
atom id 0x1db96ef00877d01a8f4e237c9307cda72aa1ef76ab8886e4a3b57548a6935c84

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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