Burns existing tokens to reduce the circulating supply for the IssuerSparkWallet.
Method Signature
async function burnTokens(tokenAmount: bigint): Promise<string>;
Parameters
The amount to burn (eg: 1000n)
Returns
Example
const txId = await issuerWallet.burnTokens(1000n);
console.log("Tokens burned:", txId);