Predicates/Knowledge/Expertise

speak

The subject has proficiency in the object language, programming language, or communication system.

proposed Knowledge/Expertise speak

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": "speak",
  "description": "The subject has proficiency in the object language, programming language, or communication system"
}
atom id 0x3b88a7126919144737aa27e192e1b1e3ce120a301dbe37e36381df59f551f1cc

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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