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