useGrantRole
AccessControl: grant role to accountTarget on the singleton.
@tokenops/sdk/fhe-disperse/react{ mutate, mutateAsync, isPending, error, data }Description
AccessControl: grant role to accountTarget on the singleton. Caller
must hold the role's admin role (typically DEFAULT_ADMIN_ROLE, i.e. the
all-zero hash). Non-zero role hashes are keccak256(toBytes("<NAME>")).
After success, invalidate
useHasRole({ role, account: accountTarget }).
Signature
function useGrantRole(options?: DisperseHookOptions): UseMutationResult<Hex, Error, UseGrantRoleArgs>;Parameters
Shape of the object you pass to .mutate(args).
| Property | Type | Description |
|---|---|---|
| rolerequired | Hex | |
| accountTargetrequired | Address | |
| account | Account | Address | Override signer account. Falls back to walletClient.account. |
Example
import { keccak256, toBytes } from "viem";
const FEE_MANAGER_ROLE = keccak256(toBytes("FEE_MANAGER_ROLE"));
const grant = useGrantRole();
grant.mutate({ role: FEE_MANAGER_ROLE, accountTarget: opsAddress });Pulled directly from the hook's TSDoc block — the same snippet your IDE shows on hover.
Errors
This mutation can reject with SDK-level, product-level, or viem-passthrough errors. Product classes carry the offending value as fields — render them inline instead of a generic "transaction failed." See Disperse › Errors for the per-class recovery table.
Invalidation recipe
After this mutation succeeds, invalidate the queries it affects so consumer UI re-fetches fresh state. The SDK never auto-invalidates — that's a consumer decision (different apps cache different shapes).
import { useQueryClient } from "@tanstack/react-query";
const queryClient = useQueryClient();
const grantRole = useGrantRole(/* options */);
grantRole.mutate(args, {
onSuccess() {
// Coarse invalidation: refresh every cached read on this product surface.
queryClient.invalidateQueries({
queryKey: ["tokenops-sdk", "fhe-disperse"],
});
},
});See also
Other Roles · RBAC hooks in disperse:
useHasRoleRead 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.useRevokeRoleAccessControl: revoke role from accountTarget on the singleton.