Prepares a transaction to call the "transferFor" function on the contract.
import { sendTransaction } from "thirdweb";import { transferFor } from "thirdweb/extensions/farcaster"; const transaction = transferFor({ contract, from: ..., to: ..., fromDeadline: ..., fromSig: ..., toDeadline: ..., toSig: ..., overrides: { ... }}); // Send the transactionawait sendTransaction({ transaction, account });
function transferFor( >,
The options for the "transferFor" function.
>;
A prepared transaction object.