Predicates/Knowledge/Expertise

certified by

The subject holds a credential, certification, or formal recognition issued by the object authority.

proposed Knowledge/Expertise certifiedBy

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": "certified by",
  "description": "The subject holds a credential, certification, or formal recognition issued by the object authority"
}
atom id 0x9d30f5065f64ccad286b8bf5d506039022146e1bfaf6877bb774a8c8c29a27f8

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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