Predicates/Economic/Market

reward

The subject protocol or program distributes incentives to the object participant class or actor.

proposed Economic/Market reward

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": "reward",
  "description": "The subject protocol or program distributes incentives to the object participant class or actor"
}
atom id 0x9676c7e45df5439028aaa4c806cc76b0d85b5323d06e1f7ef7541976d322950f

Semantics

Market patternattributive — describes the subject

Use it

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

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

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