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