Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Hook that provides functions to transfer NFTs from your account to another account
show
close
import { useTransferModal } from "@0xsequence/marketplace-sdk/react";
const { show: showTransferModal } = useTransferModal(); return ( <button onClick={() => { showTransferModal({ collectionAddress: collectionAddress, chainId: collectionChainId, collectibleId: tokenId, }); }} > Transfer </button> );
Was this page helpful?