Predicates/Provenance/Evidence

attested by

The subject claim or credential is witnessed and signed by the object attestor.

proposed Provenance/Evidence attestedBy

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": "attested by",
  "description": "The subject claim or credential is witnessed and signed by the object attestor"
}
atom id 0x46edc69922cfe75fc3ad252c625e8a6b37f0223147320be40cbdc0cdd1970cd8

Semantics

Market patternattributive — describes the subject

Use it

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

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

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