Predicates/Metadata/Linking

linked account

Connects the subject identity to one of its platform account atoms.

enshrined Metadata/Linking linkedAccount

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": "linked account",
  "description": "Connects the subject identity to one of its platform account atoms"
}
atom id 0xd8a32acc6237ab21be285953b01508c7a22f523bf122aa3ab044b21d266c2c6c

Semantics

Market patternattributive — describes the subject

Recommended for

Classifications whose metadata vocabulary includes linkedAccount:

Use it

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

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

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