> ## 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.

# UseTransfersOptions

Configuration options for useTransfers hook

## Properties

| Property                                                | Type             | Description                                                                                                 |
| ------------------------------------------------------- | ---------------- | ----------------------------------------------------------------------------------------------------------- |
| <a id="accountaddress" /> `accountAddress?`             | `string`         | Account address to fetch transfers for If not provided, uses the authenticated account from context         |
| <a id="enabled" /> `enabled?`                           | `boolean`        | Enable or disable automatic fetching Default: true                                                          |
| <a id="refetchonwindowfocus" /> `refetchOnWindowFocus?` | `boolean`        | Refetch transfers when window regains focus Default: false                                                  |
| <a id="staletime" /> `staleTime?`                       | `number`         | Time in milliseconds that data is considered fresh Default: 30000 (30 seconds)                              |
| <a id="limit" /> `limit?`                               | `number`         | Maximum number of transfers to return per page Default: 25                                                  |
| <a id="paymentrail" /> `paymentRail?`                   | `PaymentRail`    | Filter transfers by payment rail type Options: 'ach', 'wire', 'sepa', 'swift', 'solana'                     |
| <a id="status" /> `status?`                             | `TransferState`  | Filter transfers by status Options: 'pending', 'confirmed', 'failed', etc.                                  |
| <a id="currency" /> `currency?`                         | `BridgeCurrency` | Filter transfers by currency Options: 'usd', 'eur'                                                          |
| <a id="startdate" /> `startDate?`                       | `string`         | Filter transfers created after this date Format: ISO 8601 date string **Example** `'2024-01-01T00:00:00Z'`  |
| <a id="enddate" /> `endDate?`                           | `string`         | Filter transfers created before this date Format: ISO 8601 date string **Example** `'2024-12-31T23:59:59Z'` |
| <a id="txhash" /> `txHash?`                             | `string`         | Filter by specific transaction hash                                                                         |
