import { transferFrom } from "thirdweb/extensions/erc20";
import { sendTransaction } from "thirdweb";
const transaction = transferFrom({
contract: USDC_CONTRACT,
from: "0x1234...",
to: "0x5678...",
amount: 100,
});
await sendTransaction({ transaction, account });