Predicates/Social/Reputation

vouch for

The subject stakes personal credibility on the object's identity, quality, or claims. A reputation primitive stronger than endorsement.

enshrined Social/Reputation vouchFor

Enshrined — the object model is decided and the ID below is what every conforming app and the contract resolve.

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": "vouch for",
  "description": "The subject stakes personal credibility on the object's identity, quality, or claims. A reputation primitive stronger than endorsement"
}
atom id 0xb7d48411b3c5159f6de1210a62b63a45d238df7462b181afa2e7d64d7008911d

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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