Prepares a transaction to call the "burnBatch" function on the contract.
import { sendTransaction } from "thirdweb";import { burnBatch } from "thirdweb/extensions/erc1155"; const transaction = burnBatch({ contract, account: ..., ids: ..., values: ..., overrides: { ... }}); // Send the transactionawait sendTransaction({ transaction, account });function burnBatch( >,The options for the "burnBatch" function.
>;A prepared transaction object.