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