Predicates/Economic/Market

pegged to

The subject asset maintains a target price ratio relative to the object reference asset.

proposed Economic/Market peggedTo

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": "pegged to",
  "description": "The subject asset maintains a target price ratio relative to the object reference asset"
}
atom id 0xc6024b302f5e90a1868c638b99406329f8703b3d939d8fddf09add01ef674caf

Semantics

Market patternattributive — describes the subject

Use it

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

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

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