Predicates/Temporal/Lifecycle

followed by

The subject event or state is followed by the object event or state. The inverse of 'preceded by'.

proposed Temporal/Lifecycle followedBy

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": "followed by",
  "description": "The subject event or state is followed by the object event or state. The inverse of 'preceded by'"
}
atom id 0xcad445f08d88ac2f60d3c154a9ed9dce93ee520476e82d47490e2fb3b3881349

Semantics

Market patternattributive — describes the subject
Propertiestransitive

Use it

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

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

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