Predicates/Sentiment/Opinion

bearish on

The subject has negative conviction about the object's future value, growth, or success. The inverse of 'bullish on'.

enshrined Sentiment/Opinion bearishOn

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": "bearish on",
  "description": "The subject has negative conviction about the object's future value, growth, or success. The inverse of 'bullish on'"
}
atom id 0xeb91df72671d540bf0ab283b9b98fced6e5acbb5925a101b8351c47bc4119a08

Semantics

Market patterndepositional — conviction accrues by staking

Use it

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

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

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