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