transferBatch

Transfers a batch of ERC20 tokens from the sender's address to the specified recipient address.

Example

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 });

Parameters

Returns

A promise that resolves to the prepared transaction.