Predicates/Economic/Market

backed by

The subject asset or instrument is collateralized, guaranteed, or underwritten by the object asset or entity.

proposed Economic/Market backedBy

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": "backed by",
  "description": "The subject asset or instrument is collateralized, guaranteed, or underwritten by the object asset or entity"
}
atom id 0x6bea1623e6d3273aa6d31becdc29782e77ac141dbb87f51aa3994552e5e653bb

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes backedBy:

Use it

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

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

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