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