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