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