ReaduseQuery Curated

useIsRegistered

Has this deployer already called register?

Import
@tokenops/sdk/fhe-disperse/react
Return
{ data, isLoading, error, refetch }
Lifecycle
Read

Description

Check whether a user has already called register(token) and has a deployed wallet pair on the singleton.

Signature

@tokenops/sdk/fhe-disperse/react
ts
function useIsRegistered(args?: UseIsRegisteredArgs): UseQueryResult<boolean, Error>;

Parameters

Shape of the options object passed to the hook itself.

PropertyTypeDescription
userAddressThe user to check registration for. Hook is disabled until set.
Want to run a similar shape interactively? The Playground ships 8 ready presets across vesting / airdrop / disperse — deploy a manager, create a vesting, claim, and the airdrop / disperse equivalents. The deep-link above auto-selects the closest preset to useIsRegistered; pick another from the dropdown if you'd rather start there.

Example

@tokenops/sdk/fhe-disperse/react · @example
tsx
const { data: isRegistered } = useIsRegistered({ user });

Pulled directly from the hook's TSDoc block — the same snippet your IDE shows on hover.

See also

Other Read hooks in disperse: