import { sendTransaction } from "thirdweb";
import { TransferableERC721 } from "thirdweb/modules";
 
const transaction = TransferableERC721.setTransferable({
 contract,
 enableTransfer: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });