Prepares a transaction to call the "removeFor" function on the contract.
import { sendTransaction } from "thirdweb";import { removeFor } from "thirdweb/extensions/farcaster"; const transaction = removeFor({ contract, fidOwner: ..., key: ..., deadline: ..., sig: ..., overrides: {   ... }}); // Send the transactionawait sendTransaction({ transaction, account });function removeFor(    RemoveForParams | { asyncParams: () => Promise<RemoveForParams> }  >,The options for the "removeFor" function.
  RemoveForParams | { asyncParams: () => Promise<RemoveForParams> }>;A prepared transaction object.