Roles · RBACuseQuery
useHasRole
Read AccessControl: is account a member of role on this manager? The role hashes are stable across deployments — see useRoleConstants if you need to look them up dynamically.
Import
@tokenops/sdk/fhe-vesting/reactReturn
{ data, isLoading, error, refetch }Lifecycle
Roles · RBACDescription
Read AccessControl: is account a member of role on this manager?
The role hashes are stable across deployments — see useRoleConstants
if you need to look them up dynamically.
Signature
@tokenops/sdk/fhe-vesting/react
ts
function useHasRole(args: UseHasRoleArgs): UseQueryResult<boolean, Error>;Parameters
Shape of the options object passed to the hook itself.
| Property | Type | Description |
|---|---|---|
| role | Hex | |
| account | Address |
Example
components/useHasRoleExample.tsx
tsx
"use client";
import { useHasRole } from "@tokenops/sdk/fhe-vesting/react";
export function Example() {
const { data, isLoading } = useHasRole(/* args */);
if (isLoading) return "loading…";
return <pre>{JSON.stringify(data, null, 2)}</pre>;
}Auto-generated from the hook's shape (the SDK doesn't carry a TSDoc @example here yet).
See also
Other Roles · RBAC hooks in vesting: