Mints new tokens to increase the circulating supply for the IssuerSparkWallet.
Method Signature
async function mintTokens(tokenAmount: bigint): Promise<string>;
Parameters
The amount to mint (eg: 1000n)
Returns
Example
const txId = await issuerWallet.mintTokens(1000n);
console.log("Tokens minted:", txId);