Predicates/Sentiment/Opinion

disagree with

The subject's position opposes the object claim, proposal, or stance.

enshrined Sentiment/Opinion disagreeWith

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": "disagree with",
  "description": "The subject's position opposes the object claim, proposal, or stance"
}
atom id 0x772b057c1fd361e76277b4295593a58da8a1546663400f719e7aa7e65ae222be

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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