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