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

# useTransferModal

> Hook that provides functions to transfer NFTs from your account to another account

## Return

An object containing the `show` and `close` functions to initiate NFT transfers from your account to another account

## Import

```typescript theme={null}
import { useTransferModal } from "@0xsequence/marketplace-sdk/react";
```

## Example

Basic usage:

```typescript theme={null}
const { show: showTransferModal } = useTransferModal();

return (
  <button
    onClick={() => {
      showTransferModal({
        collectionAddress: collectionAddress,
        chainId: collectionChainId,
        collectibleId: tokenId,
      });
    }}
  >
    Transfer
  </button>
);
```
