> ## Documentation Index
> Fetch the complete documentation index at: https://developers.squads.so/llms.txt
> Use this file to discover all available pages before exploring further.

# UseTransfersResult

Return value from useTransfers hook

## Properties

| Property                                           | Type                                   | Description                                                                                                                                                                 |
| -------------------------------------------------- | -------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| <a id="transfers" /> `transfers`                   | (`BridgeTransfer` \| `SplTransfer`)\[] | Array of account transfers (Bridge or SPL) Empty array if no transfers found or still loading Note: When pagination is enabled, this contains all loaded pages concatenated |
| <a id="isloading" /> `isLoading`                   | `boolean`                              | Whether the query is currently loading for the first time                                                                                                                   |
| <a id="iserror" /> `isError`                       | `boolean`                              | Whether the query encountered an error                                                                                                                                      |
| <a id="error" /> `error`                           | `Error`                                | Error object if query failed, null otherwise                                                                                                                                |
| <a id="refetch" /> `refetch`                       | () => `void`                           | Function to manually refetch all transfers from the beginning                                                                                                               |
| <a id="isrefetching" /> `isRefetching`             | `boolean`                              | Whether data is being refetched in the background                                                                                                                           |
| <a id="response" /> `response`                     | `TransferResponse`                     | Raw response from the API (most recent fetch) Includes both data and potential error fields                                                                                 |
| <a id="loadmore" /> `loadMore`                     | () => `void`                           | Function to load the next page of transfers Only available when pagination is enabled (limit option provided)                                                               |
| <a id="hasmore" /> `hasMore`                       | `boolean`                              | Whether more transfers are available to load True if there are additional pages of data                                                                                     |
| <a id="isfetchingnextpage" /> `isFetchingNextPage` | `boolean`                              | Whether the next page is currently being fetched                                                                                                                            |
