Predicates/Metadata/Linking

imgUrl

Links the subject atom to an image URL. Legacy camelCase naming retained for backward compatibility.

enshrined Metadata/Linking imgUrl

Enshrined — the object model is decided and the ID below is what every conforming app and the contract resolve.

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": "imgUrl",
  "description": "Links the subject atom to an image URL. Legacy camelCase naming retained for backward compatibility"
}
atom id 0x9f2f3089c1f61cae97bc0a50bb199854489df1971641336f9247395131eaba2f

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes imgUrl:

Use it

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

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

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