Roles · RBACuseQuery Curated
useHasRole
Read AccessControl: is account a member of role on the singleton? All five role constants (DEFAULT_ADMIN_ROLE, FEE_MANAGER_ROLE, FEE_COLLECTOR_ROLE, PAUSER_ROLE, WITHDRAWER_ROLE) are exported from @tokenops/sdk/fhe-disperse/react.
Import
@tokenops/sdk/fhe-disperse/reactReturn
{ data, isLoading, error, refetch }Lifecycle
Roles · RBACDescription
Read AccessControl: is account a member of role on the singleton?
DisperseConfidential defines DEFAULT_ADMIN_ROLE (the all-zero hash), FEE_MANAGER_ROLE, FEE_COLLECTOR_ROLE, PAUSER_ROLE, and WITHDRAWER_ROLE. The SDK exports all five as named constants from @tokenops/sdk/fhe-disperse/react; import them instead of recomputing keccak256 hashes.
Signature
@tokenops/sdk/fhe-disperse/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 | The address to check role membership for. Hook disabled until set. |
Example
@tokenops/sdk/fhe-disperse/react · @example
tsx
import { FEE_MANAGER_ROLE } from "@tokenops/sdk/fhe-disperse/react";
const { data: isManager } = useHasRole({ role: FEE_MANAGER_ROLE, account: user });Pulled directly from the hook's TSDoc block — the same snippet your IDE shows on hover.
See also
Other Roles · RBAC hooks in disperse: