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