ReaduseQuery Curated

useGetWallets

Read the deployer's two registered subwallet addresses.

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

Description

Read the on-chain wallet pair for a registered user.

Returns null if the user is not registered. For unregistered users, call usePredictWallets to get the deterministic addresses they would receive after register().

Signature

@tokenops/sdk/fhe-disperse/react
ts
function useGetWallets(args?: UseGetWalletsArgs): UseQueryResult<[Address, Address] | null, Error>;

Parameters

Shape of the options object passed to the hook itself.

PropertyTypeDescription
userAddressThe user whose wallet pair to read. 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 useGetWallets; pick another from the dropdown if you'd rather start there.

Example

@tokenops/sdk/fhe-disperse/react · @example
tsx
const { data: wallets } = useGetWallets({ user });
if (wallets) { ... wallets[0], wallets[1] ... }

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

See also

Other Read hooks in disperse: