> For the complete documentation index, see [llms.txt](https://docs.cometh.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cometh.io/integrations/react-hooks/handle-owners/usegetowners-enrichedowners.md).

# useGetOwners/EnrichedOwners

## Description of useGetOwners

It's typically used in the process of getting the list of address that are owners of the wallet.

## Returns

* **data** (`Address[ | undefined`): Returns the array of owners addresses.
* **isLoading** (`boolean`): A boolean indicating whether the data is currently being fetched.
* **error** (`Error | null`): An error object if an error occurred during the fetching process, otherwise `null`.

## Description of useGetEnrichedOwners

It gives your the list of owners of the wallet with additional information for specific signers like passkeys (device used for the creation, creation date...)

## Type

EnrichedOwners:&#x20;

* address
* deviceData (browser, os, platform)
* creationDate

## Returns

* **data** (`Address[ | undefined`): Returns the array of owners addresses.
* **isLoading** (`boolean`): A boolean indicating whether the data is currently being fetched.
* **error** (`Error | null`): An error object if an error occurred during the fetching process, otherwise `null`.

##
