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