Predicates/Sentiment/Opinion

oppose

The subject actively resists or campaigns against the object cause, proposal, or initiative. The inverse of 'supports'.

proposed Sentiment/Opinion oppose

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": "oppose",
  "description": "The subject actively resists or campaigns against the object cause, proposal, or initiative. The inverse of 'supports'"
}
atom id 0xba04c796c6772430d4db6aa5266617549cedabdeb9d95307eb0a5872d64016ed

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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