Predicates/Social/Reputation

distrust

The subject asserts negative trust in the object. The inverse of 'trusts' — enables negative reputation signals.

enshrined Social/Reputation distrust

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": "distrust",
  "description": "The subject asserts negative trust in the object. The inverse of 'trusts' — enables negative reputation signals"
}
atom id 0x5ff9d7c79cd3741fbc3f1edc73e2a5b8f91ea168b26947208cfc652fd674b248

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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