Predicates/Social/Reputation

follow

The subject chooses to subscribe to or track updates from the object entity. Unidirectional and non-reciprocal.

enshrined Social/Reputation follow

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": "follow",
  "description": "The subject chooses to subscribe to or track updates from the object entity. Unidirectional and non-reciprocal"
}
atom id 0x1d38401c1cd1d0b21215754554b3dae60fb626e760cf7b99162e25baf16464b6

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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