Predicates/Sentiment/Opinion

bullish on

The subject has positive conviction about the object's future value, growth, or success. A market-native sentiment primitive.

enshrined Sentiment/Opinion bullishOn

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": "bullish on",
  "description": "The subject has positive conviction about the object's future value, growth, or success. A market-native sentiment primitive"
}
atom id 0x0ab87a5ba67b22c33e13a2424ba3dd372bef468e8958dd32e9e74fe93f621bc1

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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