import { sendTransaction } from "thirdweb";
import { uninstallModule } from "thirdweb/extensions/modules";
const transaction = uninstallModule({
contract,
moduleContract: ...,
data: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });