import { sendTransaction } from "thirdweb";
import { removeFor } from "thirdweb/extensions/farcaster";
 
const transaction = removeFor({
 contract,
 fidOwner: ...,
 key: ...,
 deadline: ...,
 sig: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });