import { sendTransaction } from "thirdweb";
import { transferFor } from "thirdweb/extensions/farcaster";
 
const transaction = transferFor({
 contract,
 from: ...,
 to: ...,
 fromDeadline: ...,
 fromSig: ...,
 toDeadline: ...,
 toSig: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });