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