Predicates/Sentiment/Opinion

support

The subject actively backs the object cause, proposal, or initiative. Broader than 'endorses' — applies to movements and policies, not just entities.

proposed Sentiment/Opinion support

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": "support",
  "description": "The subject actively backs the object cause, proposal, or initiative. Broader than 'endorses' — applies to movements and policies, not just entities"
}
atom id 0x6b29ed6806c39be50b60b186c689cebfd280c27936d4e4c872e785bfa151c423

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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