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