Predicates/Domain-Specific

implement

The subject contract, application, or system implements the object standard, specification, or interface.

proposed Domain-Specific implement

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": "implement",
  "description": "The subject contract, application, or system implements the object standard, specification, or interface"
}
atom id 0xfdcee9a5a6150ffa458518d0f1b50eeed5f42b6aee269aab71d00d869d6fbbd1

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes implement:

Use it

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

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

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