voted for
The subject cast a governance vote in favor of the object proposal.
proposed
Governance/Policy
votedFor
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.
{
"@context": "https://schema.org/",
"@type": "DefinedTerm",
"name": "voted for",
"description": "The subject cast a governance vote in favor of the object proposal"
}
atom id
0xda78cf97d568942dae1563133b67264ca694d6f6f50e49a3a132c778cf7b1f3c
Semantics
Market patterndepositional — conviction accrues by staking
Use it
// tree-shakeable: only this predicate ships in your bundle
import { votedForId } from "@0xintuition/predicates/votedFor";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.votedFor; // 0xda78cf97d568942dae1563133b67264ca694d6f6f50e49a3a132c778cf7b1f3c
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"votedFor",
objectId,
);
// triple.predicateId === 0xda78cf97… — resolved from the registry