import { transferBatch } from "thirdweb/extensions/erc20";
import { sendTransaction } from "thirdweb";
 
const transaction = transferBatch({
 contract,
 batch: [
   {
     to: "0x...",
     amount: 100,
   },
   {
     to: "0x...",
     amount: "0.1",
   },
]);
 
await sendTransaction({ transaction, account });