import { sendTransaction } from "thirdweb";
import { airdropERC20 } from "thirdweb/extensions/airdrop";
const transaction = airdropERC20({
contract,
tokenAddress: ...,
contents: ...,
overrides: {
...
}
});
// Send the transaction
await sendTransaction({ transaction, account });