trust
The subject asserts positive trust in the object. A first-class reputation primitive for web-of-trust graphs.
enshrined
Social/Reputation
trust
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.
{
"@context": "https://schema.org/",
"@type": "DefinedTerm",
"name": "trust",
"description": "The subject asserts positive trust in the object. A first-class reputation primitive for web-of-trust graphs"
}
atom id
0x722c865044ce8d169832545c9a47701dd8ff71ce62fa0408b70bd53842e4d443
Semantics
Market patterndepositional — conviction accrues by staking
Use it
// tree-shakeable: only this predicate ships in your bundle
import { trustId } from "@0xintuition/predicates/trust";
// or resolve everything from the aggregate registry
import { PREDICATE_IDS } from "@0xintuition/predicates";
PREDICATE_IDS.trust; // 0x722c865044ce8d169832545c9a47701dd8ff71ce62fa0408b70bd53842e4d443
import { buildTripleByName } from "@0xintuition/primitives/triple";
const { value: triple } = buildTripleByName(
subjectId,
"trust",
objectId,
);
// triple.predicateId === 0x722c8650… — resolved from the registry