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