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