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