import { sendTransaction } from "thirdweb";
import { burnBatch } from "thirdweb/extensions/erc1155";
 
const transaction = burnBatch({
 contract,
 account: ...,
 ids: ...,
 values: ...,
 overrides: {
   ...
 }
});
 
// Send the transaction
await sendTransaction({ transaction, account });